|
第一个程序LA
Undefined symbols:
_plegend C:\DSGE(17July2010)\SolveLA3.src(826)
proc(0)=SetLegend(j,ymin,ymax,i,sn);
local a,b;
调试提示这一行有问题:external matrix _plegctl, _plegend;
if ismiss(_plegend[sn,i,1]);
if abs(ymin)>ymax;
_plegctl=(1~6~floor(j/3)~ymin);
else;
_plegctl=(1~6~floor(j/3)~0.5*ymax);
endif;
第二个程序QA
Undefined symbols:
_plegend C:\DSGE(17July2010)\SolveQA2.src(912)
proc(0)=SetLegend(j,ymin,ymax,i,sn);
local a,b;
提示这一行有错误:external matrix _plegctl, _plegend;
if ismiss(_plegend[sn,i,1]);
if abs(ymin)>ymax;
_plegctl=(1~6~floor(j/3)~ymin);
else;
_plegctl=(1~6~floor(j/3)~0.5*ymax);
endif;
|