Displaying 1 result from an estimated 1 matches for "betastore".
2005 May 19
1
R 2.1.0 RH Linux Built from Source Segmentation Fault
...11])
> nvar=ncol(X)
> Y=read.table("y300_new.txt",header=TRUE)
> Y=as.matrix(Y)
> yrows=read.table("yrows300_new.txt",header=TRUE)
> nphy=nrow(yrows)
> nobs=sum(yrows)/nalt
> if (nrow(X)!=nobs*nalt){print("data dimensions wrong")}
>
> betastore=NULL
> delta=diag(nvar)
> z=read.table("z300.txt",header=TRUE)
> z=as.matrix(z)
> k=ncol(z)
> A1=.1*diag(k)
> nu1=3+nalt
> V=diag(nvar)*nu1
>
> rowx1=rep(0,nphy+1)
> rowx2=rep(0,nphy)
> rowy1=rep(0,nphy+1)
> rowy2=rep(0,nphy)
> rowx1[1]=1...