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)
是不是格式不匹配出现的错误呢,还是别的什么错误?