필터 지우기
필터 지우기

Hello. I want to calculate the covariance matrix for a parameter vector Q[1x24].

조회 수: 1 (최근 30일)
SAMPETAI
SAMPETAI 2024년 2월 5일
편집: Askic V 2024년 2월 16일
In this picture the formula that may be used is displayed. I need this for getting the covariance matrix of a parameter vector. In other applications in which I use AutoRegressive (AR), ARX models, I use matlab's command 'model=arx(y,24)' and to get the covariance matrix I used model.covariancematrix. However, now I use VARMA models and I only have the parameter vector. Is there a way of getting the covariance matrix out of the parameter vector (In AR case: model.parametervector)

답변 (1개)

Askic V
Askic V 2024년 2월 16일
편집: Askic V 2024년 2월 16일
Is this helpful to you?
I have used the example from Matlab documentation.
load iddata9 z9
Ts = z9.Ts;
y = cumsum(z9.y);
model = ar(y, 4, 'ls', 'Ts', Ts, 'IntegrateNoise', true);
param_vector = model.Report.Parameters.ParVector
param_vector = 4×1
-0.7878 -0.4768 -0.0925 0.4653
covar = model.Report.Parameters.FreeParCovariance
covar = 4×4
0.0015 -0.0015 -0.0005 0.0006 -0.0015 0.0027 -0.0008 -0.0004 -0.0005 -0.0008 0.0028 -0.0015 0.0006 -0.0004 -0.0015 0.0014

카테고리

Help CenterFile Exchange에서 Conditional Mean Models에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by