Displaying 4 results from an estimated 4 matches for "ml_neginf".
2000 Jun 16
2
R and OpenBSD
Howdy!
Has anybody successfully installed R under OpenBSD? I just tried to
install the latest R-release under OpenBSD 2.7 and got the following
errors in the make step:
pnorm.c:62 'ML_ERR_return_NAN' undeclared
pnorm.c:62 'ML_NAN' undeclared
pnorm.c:62 'ML_NEGINF' undeclared
--Ragnar
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) T...
2000 Jun 16
2
R and OpenBSD
Howdy!
Has anybody successfully installed R under OpenBSD? I just tried to
install the latest R-release under OpenBSD 2.7 and got the following
errors in the make step:
pnorm.c:62 'ML_ERR_return_NAN' undeclared
pnorm.c:62 'ML_NAN' undeclared
pnorm.c:62 'ML_NEGINF' undeclared
--Ragnar
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) T...
2000 Feb 25
1
lambda==0 in dpois() (PR#459)
The nice new log=TRUE option in dpois appears to mess up the
case where lambda=0 (I was trying to calculate the likelihood
of a saturated model). Because the behavior is now always to
calculate the probability in terms of exp(log(prob)), there's
a test for lambda<=0 which really needs to be only lambda<0.
dpois(0:5,0)
ought to give
1 0 0 0 0
but gives NaNs instead.
Here's
2005 Apr 07
0
R 2.1.0 (beta) on IRIX
...ving the R_INLINE keyword. I can't see
another solution, and reading these guidelines on inlining
( http://www.greenend.org.uk/rjk/2003/03/inline.html ) leaves me no
wiser.
2) IEEE arithmetic
The standalone math library fails to compile, as the compiler chokes on
the definition of ML_POSINF, ML_NEGINF and ML_NAN, e.g.
> cc-1195 cc: ERROR File = mlutils.c, Line = 130
> The indicated floating-point operation result is out of range.
>
> double NA_REAL = ML_NAN;
where ML_NAN is defined as (0.0 / 0.0) in nmath.h. The compiler flag
-OPT:IEEE_NaN_inf=ON is supposed to enforce IEEE...