##' @include abstracts.R QhatModel.homo.gamma.linear.R QhatModel.homo.normal.linear.AR3.R
##' @export
QhatModel.homo.gamma.linear.AR3 <- setClass(
# Set the name for the class
"QhatModel.homo.gamma.linear.AR3",
package='hydroState',
contains=c('QhatModel.homo.gamma.linear', 'QhatModel.homo.normal.linear.AR3'),
# Set the default values for the slots. (optional)
prototype=list(
parameters = new('parameters',c('mean.a0', 'mean.a1','mean.AR1','mean.AR2','mean.AR3','std.a0'),c(1,1,1,1,1,1))
)
)
# Valid object?
validObject <- function(object) {
TRUE
}
setValidity("QhatModel.homo.gamma.linear.AR3", validObject)
# Initialise object
#setGeneric(name="initialize",def=function(.Object,input.data){standardGeneric("initialize")})
setMethod("initialize","QhatModel.homo.gamma.linear.AR3", function(.Object,input.data, transition.graph=matrix(T,2,2),state.dependent.mean.a0=T,
state.dependent.mean.a1=F,state.dependent.mean.trend=NA,
state.dependent.mean.AR1=F,state.dependent.mean.AR2=F,state.dependent.mean.AR3=F,
state.dependent.std.a0=T) {
.Object@use.truncated.dist <- F
.Object@nStates = ncol(transition.graph)
# Set the number of parameter values per parameter name and set up model terms for mean and standard deviation and trend.
if (is.na(state.dependent.mean.trend)) {
parameter.length <- as.numeric(c(state.dependent.mean.a0, state.dependent.mean.a1, state.dependent.mean.AR1,state.dependent.mean.AR2,state.dependent.mean.AR3,
state.dependent.std.a0)) * (.Object@nStates-1) + 1
.Object@parameters = new('parameters', c('mean.a0', 'mean.a1', 'mean.AR1', 'mean.AR2','mean.AR3', 'std.a0'), parameter.length)
} else {
parameter.length <- as.numeric(c(state.dependent.mean.a0, state.dependent.mean.a1, state.dependent.mean.trend, state.dependent.mean.AR1,
state.dependent.mean.AR2, state.dependent.mean.AR3, state.dependent.std.a0)) * (.Object@nStates-1) + 1
.Object@parameters = new('parameters', c('mean.a0', 'mean.a1','mean.trend', 'mean.AR1', 'mean.AR2','mean.AR3','std.a0'), parameter.length)
}
validObject(.Object)
.Object
}
)
setMethod(f="getMean",signature=c("QhatModel.homo.gamma.linear.AR3","data.frame"),definition=function(.Object, data)
{
return(getMean.AR3(.Object, data))
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.