Re: Math problem
From: Leonid Gibiansky
Subject:Re: [NMusers] Math problem
Date:Thu, 15 May 2003 15:30:33 -0400
Domain error usually means that you are trying to use function in the wrong
domain, e.g., SQRT(-1), log(0). etc. Here the program mentioned asin
(arc-sine ?) For asin, Domain Error occur in asin(x) is x is not in the
range [-1,1]. Can it be due to rounding error around 1 or -1 ?
Alternatively, asin can be hidden deep inside the code or in some other
system functions. It is hard to say anything specific without looking on
the code. As usual, try to start with new initial values.
Leonid