X2
which are linearly
dependent on columns of a matrix X1
. Primarily of use in setting up
identifiability constraints for nested GAMs.fixDependence(X1,X2,tol=.Machine$double.eps^.5)
X1
.X2
which are linearly dependent on
columns of X1
. NULL
if the two matrices are independent.n<-20;c1<-4;c2<-7
X1<-matrix(runif(n*c1),n,c1)
X2<-matrix(runif(n*c2),n,c2)
X2[,3]<-X1[,2]+X2[,4]*.1
X2[,5]<-X1[,1]*.2+X1[,2]*.04
fixDependence(X1,X2)
Run the code above in your browser using DataLab