Name
pltvarma — plots the residuals of an ARMA estimation
CALLING SEQUENCE
pltvarma(res)
PARAMETERS
- Input
res= a tlist result from function varma
- Output
nothing (printed on a graphic window)
DESCRIPTION
Plots the residuals of an ARMA estimation.
EXAMPLE
load(GROCERDIR+'/data/varma_d.dat');
seriesd = log(seriesd)/log(10);
y = transdif(seriesd,1,1,1,12);
result=varma('y',0.8,[],[],0.6,0.1,12,'noprint');
pltvarma(result,'stud')