locpol_spec_methods {fEGarch}R Documentation

Accessors for Class "locpol_spec"

Description

Access and change elements in objects of class "locpol_spec". The method names represent the name of the element to access / manipulate.

Usage

## S4 method for signature 'locpol_spec'
poly_order(x)

## S4 method for signature 'locpol_spec'
kernel_order(x)

## S4 method for signature 'locpol_spec'
boundary_method(x)

## S4 method for signature 'locpol_spec'
bwidth(x)

## S4 replacement method for signature 'locpol_spec'
poly_order(x) <- value

## S4 replacement method for signature 'locpol_spec'
kernel_order(x) <- value

## S4 replacement method for signature 'locpol_spec'
boundary_method(x) <- value

## S4 replacement method for signature 'locpol_spec'
bwidth(x) <- value

Arguments

x

the input object or object to modify.

value

the value to modify the object x with.

Details

These methods are intended to be used for accessing or manipulating individual elements of objects of class "locpol_spec".

Value

These methods return an object of class "locpol_spec".

Examples

test_obj <- locpol_spec()
poly_order(test_obj)
poly_order(test_obj) <- 1
poly_order(test_obj)


[Package fEGarch version 1.0.1 Index]