Run-Time and Math Errors Help (runerr.hlp) (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
M6201
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Math error M6201
 
     'function' : _DOMAIN error
 
     An argument to the given function was outside the domain of legal
     input values for that function.
 
     For example, the following statements generate this error:
 
          result = sqrt(-1.0)   // C statement
          result = SQRT(-1.0)   !  FORTRAN statement
 
     This error calls the _matherr function with the function name,
     its arguments, and the error type. You can rewrite the _matherr
     function to customize the handling of certain run-time floating-
     point math errors.
                                    -♦-