reg.est: Estimate the optimal dimension in linear regression problem

Description Usage Arguments Value References See Also Examples

Description

Estimate regression operator P (matrix d \times d) in model

Y_t = P X_t + \varepsilon_t,

where X_t is a d-dimensional stationary process and \varepsilon_t forms a white noise.

Usage

1
reg.est(X, Y, K = NULL, Kconst = 1)

Arguments

X

regressors process

Y

response process

K

how many directions should be inverted (as in pseudoinverse)

Kconst

constant for heuristic (as in reg.dim.est)

Value

Estimated regression operator

References

Siegfried Hormann and Lukasz Kidzinski A note on estimation in Hilbertian linear models Research report, 2012

See Also

reg.dim.est, speclagreg

Examples

1
2
3
4
X = rar(100)
e = rar(100)
Y = X + 0.3 * e
Psi = reg.est(X,Y)

freqdom documentation built on May 2, 2019, 5:55 p.m.

Related to reg.est in freqdom...