https://github.com/cran/fGarch
Raw File
Tip revision: 7d85dd50aab0ed4654f7b39c4b810f75df4f684a authored by Georgi N. Boshnakov on 05 November 2022, 21:10:02 UTC
version 4022.89
Tip revision: 7d85dd5
class-fGARCHSPEC.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:               SPECIFICATION: 
#  fGARCHSPEC              S4 fGARCHSPEC Class representation 
################################################################################


setClass("fGARCHSPEC", 
    representation(
        call = "call",
        formula = "formula",        
        model = "list",
        presample = "matrix",
        distribution = "character",
        rseed = "numeric")  
)


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

back to top