|
请问楼主:
我的程序如下:
a=wk1read('cigardemo.wk1',1,0);
w1=wk1read('spat-sym-us.wk1');
T=6;
N=46;
W=normw(w1);
y=a(:,[3]);
x=a(:,[4,5,6]);
xconstant=ones(N*T,1);
[nobs K]=size(x);
info.lflag=0;
info.model=1;
info.fe=0;
results=sar_panel_FE(y,x,W,T,info)
运算结果如下:
results =
meth: 'sarsfe'
iter: 1
beta: [3x1 double]
rho: 0.1990
sige: 0.0014
con: 2.5223
sfe: [46x1 double]
tsfe: [46x1 double]
tcon: 13.4755
tnvar: 49
resid: [276x1 double]
rsqr: 0.9729
corr2: 0.4511
yhat: [276x1 double]
lik: 514.7673
cov: [4x4 double]
tstat: [4x1 double]
nobs: 276
nvar: 3
rmax: 1
rmin: -1
lflag: 0
order: 50
miter: 30
fe: 0
time: 0.0470
time1: 0.0320
time2: 0
time3: 0
time4: 0
lndet: [2001x2 double]
N: 46
T: 6
model: 1
请问楼主,我的程序出了什么问题了?谢谢楼主
|