Raw File
getAIC_bild.R
setMethod("getAIC",
    signature(object = "bild"),
    function (object) 
    {
        return(object@aic)
    }
)

back to top