Math-GSL
view release on metacpan or search on metacpan
pm/Math/GSL/Errno.pm.2.6 view on Meta::CPAN
print gsl_strerror($GSL_EDOM) . "\n";
=head1 STATUS CODES
=over 4
=item * $GSL_SUCCESS
Success
=item * $GSL_FAILURE
General Failure
=item * $GSL_CONTINUE
Iteration has not converged
=item * $GSL_EDOM
Domain error; used by mathematical functions when an argument value does not fall into the domain over which the function is defined (like EDOM in the C library)
=item * $GSL_ERANGE
Range error; used by mathematical functions when the result value is not representable because of overflow or underflow (like ERANGE in the C library)
=item * $GSL_EFAULT
Invalid Pointer
=item * $GSL_EINVAL
Invalid argument. This is used to indicate various kinds of problems with passing the wrong argument to a library function (like EINVAL in the C library).Invalid argument. This is used to indicate various kinds of problems with passing the wrong argu...
=item * $GSL_EFAILED
Generic Failure
=item * $GSL_EFACTOR
Factorization Failed
=item * $GSL_ESANITY
Sanity Check Failed
=item * $GSL_ENOMEM
No memory available. The system cannot allocate more virtual memory because its capacity is full (like ENOMEM in the C library). This error is reported when a GSL routine encounters problems when trying to allocate memory with malloc.
=item * $GSL_EBADFUNC
Problem with user-supplied function
=item * $GSL_ERUNAWAY
Iterative process is our of control
=item * $GSL_EMAXITER
Exceeded max number of iterations
=item * $GSL_EZERODIV
Division by zero
=item * $GSL_EBADTOL
Invalid user-specified tolerance
=item * $GSL_ETOL
Failed to reach the specified tolerance
=item * $GSL_EUNDRFLW
Underflow
=item * $GSL_EOVRFLW
Overflow
=item * $GSL_ELOSS
Loss of accuracy
=item * $GSL_EROUND
Failed due to roundoff error
=item * $GSL_EBADLEN
Matrix/vector lengths not compatible
=item * $GSL_ENOTSQR
Not a square matrix
=item * $GSL_ESING
Singularity Detected
=item * $GSL_EDIVERGE
Integral/Series is divergent
=item * $GSL_EUNSUP
Not supported by hardware
=item * $GSL_EUNIMPL
Not implemented
=item * $GSL_ECACHE
Cache limit exceeded
=item * $GSL_ETABLE
Table limit exceeded
( run in 0.390 second using v1.01-cache-2.11-cpan-71847e10f99 )