Displaying 1 result from an estimated 1 matches for "oz3".
Did you mean:
o3
2002 Nov 27
1
R on the Zaurus
...my SL5500. I've not tested the X windowing
support yet, but was more concerned about the accuracy of the fp emulation.
The following is the result of the test which Stuart Leask recommended I
should try:
Mandrake 8.2
> x<-NA
> is.na(x)
[1] TRUE
> x+1
[1] NA
> 2*x
[1] NA
Zaurus OZ3
> x<-NA
> is.na(x)
[1] TRUE
> x+1
[1] 1
> 2*x
[1] 8.29488e-311
Presumably this is the wrong answer. The question is whether it's the fault
of the Zaurus' fp emulation, or some sort of incompatibility with the way R
is written. Does anyone know for certain which it might be?...