MARSS
MARSS copied to clipboard
Z=0 and R=0, MARSSkfss problem
#This fits
test = MARSS(cumsum(rnorm(100)), model=list(Z=matrix(0), A="zero", x0="zero"))
#This doesn't
test = MARSS(cumsum(rnorm(100)), model=list(Z=matrix(0), A="zero", x0="zero", R="zero"))
This works
dat <- t(harborSealWA)
dat <- dat[2:3, 6:22] # remove the year row
test = MARSS(dat, model=list(Z=diag(0,2), A="zero", x0="zero"))
Not so sure this is really a bug.