p_cfar: Prediction of CFAR Processes

Description Usage Arguments Value References Examples

Description

Prediction of CFAR processes.

Usage

1
p_cfar(model, f, m = 3)

Arguments

model

CFAR model.

f

the functional time series data.

m

the forecasting horizon.

Value

The function returns a prediction of the CFAR process.

References

Liu, X., Xiao, H., and Chen, R. (2016) Convolutional autoregressive models for functional time series. Journal of Econometrics, 194, 263-282.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
phi_func= function(x)   
{
 	return(dnorm(x,mean=0,sd=0.1))
}
y=g_cfar1(100,5,phi_func)
f_grid=y$cfar
index=seq(1,1001,by=10)
f=f_grid[,index]
est=est_cfar(f,1)
pred=p_cfar(est,f,1)

ConvFuncTimeSeries/test_t documentation built on May 29, 2019, 1:39 p.m.