getK | R Documentation |
Method to get values of the growth parameter K
getK(object, ...)
## S4 method for signature 'a4aGr'
getK(object)
object |
an |
... |
additional argument list that might never be used |
a vector
with K values
mm <- matrix(NA, ncol=3, nrow=3)
diag(mm) <- c(50, 0.001,0.001)
mm[upper.tri(mm)] <- mm[lower.tri(mm)] <- c(0.1,0.01,0.00004)
md <- ~linf*(1-exp(-k*(t-t0)))
imd <- ~t0-1/k*log(1-len/linf)
prs <- FLPar(linf=58.5, k=0.086, t0=0.001, units=c("cm","yr^-1","yr"))
vbObj <- a4aGr(grMod=md, grInvMod=imd, params=prs, vcov=mm, distr="norm")
vbObj <- mvrnorm(100,vbObj)
getK(vbObj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.