蜜雪儿 发表于 2009-3-22 20:28

load出错求助

load e:\eof\series_R.dta;
??? Error using ==> load
Number of columns on line 72 of ASCII file e:\eof\seriesR.dta
must be the same as previous lines.
See FILEFORMATS for a list of known file types and the functions used to read
出现这样的错误, 写dta的fortran是:
open(14,FILE='series_R.dta')
write(14,4444) ((series(i,j),j=1,Lmonth),i=1,ista)
4444 format(576f7.2)
      close(14)
是不是格式不匹配出现的错误呢,还是别的什么错误?

蜜雪儿 发表于 2009-3-22 20:53

是不是以为这个160*576的数据太大了呢

ChaChing 发表于 2009-3-22 23:14

Number of columns on line 72 of ASCII file e:\eof\seriesR.dta
must be the same as previous lines.
检查72行的数据是否与之前的不同?

hchangduan 发表于 2009-3-25 11:38

我也遇到同样问题,怎么解决啊
页: [1]
查看完整版本: load出错求助