WIND SPEED PREDICTION ARIMA Model
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
if the value of
p = 1
d = 1
q =1
Now i want to create ARIMA model
MD = ARIMA('AR', { }, 'MA' { }, 'SAR', { }, 'SMA' { }, 'D' ,.., 'SEASONALITY',.., 'CONSTANT',..,'VARIANCE',..)
Can anyone tell, how can we calculate these values?
Thank you
0 comentarios
Respuestas (1)
Aman
el 21 de Ag. de 2024
Hi Seemant,
As per my understanding, you want to find seasonal and non-seasonal coefficients values when the degree of non-seasonal coefficients is fixed for an ARIMA model.
In order to do so, you need to first create an ARIMA model with those fixed degrees and then need to fit that model to your data. Once you have fitted your model, you can find the coefficients values using the fitted model. You can refer to the below code, where I have done the same thing to find the AR parameter value.
rng(5);
y = rand(500,1);
mdl = arima(1,1,1);
estimation = estimate(mdl,y);
AR = estimation.AR{1};
disp("AR parameter estimated is " + string(AR));
You can refer to the documentation below to learn more about the "estimate" function.
I hope it will help you to proceed with your workflow.
0 comentarios
Ver también
Categorías
Más información sobre Conditional Mean Models en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!