Displaying 1 result from an estimated 1 matches for "du4".
Did you mean:
du
2000 Jun 02
2
make check on DU4 with R-1.1.0 snapshot
I just tried the rsync version of R-1.1.0 on one of my alphas:
It compiles without problems (gcc/g77 2.95.2, system is DU4.0E)
but make check stops in base-Ex.R at
> X <- cbind(1, 1:7)
> str(s <- svd(X)); D <- diag(s$d)
List of 3
$ d: num [1:2] 12.07 1.16
$ u: num [1:7, 1:2] -0.0976 -0.1788 -0.2601 -0.3413 -0.4225 ...
$ v: num [1:2, 1:2] -0.198 -0.980 -0.980 0.198
> stopifnot(abs(X - s$u %*% D %...