https://github.com/cran/fGarch
Raw File
Tip revision: 1d5b9f48e370216a6fd82074c67fd76accd41a96 authored by Tobias Setz on 16 July 2022, 23:10:02 UTC
version 4021.86
Tip revision: 1d5b9f4
class-fGARCH.R

# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General
# Public License along with this library; if not, write to the
# Free Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA  02111-1307  USA


################################################################################
# FUNCTION:                 DESCRIPTION:
#  'fGARCH'                  fGARCH Class representation
################################################################################


# Class Representation:
setClass("fGARCH",
    representation(
        call = "call",
        formula = "formula",
        method = "character",
        data = "numeric",
        fit = "list",
        residuals = "numeric",
        fitted = "numeric",
        h.t = "numeric",
        sigma.t = "numeric",
        title = "character",
        description = "character")
)


################################################################################

back to top