Displaying 1 result from an estimated 1 matches for "42199".
Did you mean:
2199
2007 Jul 23
2
R2.6 bug in arithmetics of S4 classes inherited from 'array', or intended behavior?
...is Image again:
version.string R version 2.5.1 (2007-06-27):
> library(EBImage)
> a <- Image(0, c(2,2))
> class(a+a)
[1] "Image"
attr(,"package")
[1] "EBImage"
The same stands for
version.string R version 2.6.0 Under development (unstable) (2007-07-11
r42199)
> library(EBImage)
> a <- Image(0, c(2,2))
> class(a+a)
[1] "Image"
attr(,"package")
[1] "EBImage"
Now, in the yesterday's revision of R2.6 I get the following:
version.string R version 2.6.0 Under development (unstable) (2007-07-21
r42284)
> lib...