chol(x,pivot=TRUE) does not have attribute pivot in R

43 Views Asked by At

If I run the code below, xStep1 does not have an attribute named pivot. According to the doc's it should have this attribute. Any help would be appreciated.

x=Diagonal(10000)
x[1,3]=0.3
x[3,1]=0.3
xStep1=chol(x,pivot=TRUE)
0

There are 0 best solutions below