I am getting this error while running a program. When I click on line 145, I see a new window for paxnum.src is opening. An error output is notified as:
Currently active call:
File paxnum.src, line 145, in _popt
max = ste*nint_opt + ori;
Traceback:
File paxnum.src, line 27, in _paxnum
{ ori,ste,max,mint } = _popt(minx,maxx);
File pxy.src, line 104, in xy
{ qysig,qyfield,qyprec,qypow,qyorig,qystep,qymax,qymint,qylab } =
File mgarch1.gss, line 194, in <main>
xy(0,ht[.,2]);
HOW TO PROCEED?? Please help!
1 Answer
0
You can use the new GAUSS graphics instead of the old-style PQG graphics by changing the line in your main program from:
xy(0,ht[.,2]);
to
plotxy(seqa(1,1,rows(ht)),ht[.,2]);
Your Answer
1 Answer
You can use the new GAUSS graphics instead of the old-style PQG graphics by changing the line in your main program from:
xy(0,ht[.,2]);
to
plotxy(seqa(1,1,rows(ht)),ht[.,2]);