Displaying 1 result from an estimated 1 matches for "09yields".
1997 Oct 17
2
R-alpha: bug in svd
I use R Version 0.60 Alpha (September 18, 1997) on a Linux Pentium
(Debian 1.3) and on a Sparc-Sun-Solaris 2.5.=20
R> svd(matrix(1:16,4,4))
=09yields on both machines
Error: error 4 in dsvdc
R> svd(matrix(1:20,4,5))
=09gives a result on the Linux computer
$d
[1] 0 0 0 NA
$u
[,1] [,2] [,3] [,4]
[1,] 1 0 0 0
[2,] 0 1 0 0
[3,] 0 0 1 0
[4,] 0 0 0 1
$v
[,1] [,2] [,3] [,4]
[1,] 1...