robin908 发表于 2006-12-8 20:30

Input .txt file

当我准备读入unformatted data 文档1.txt(内容如下)
-0.225586972
-0.023536708
-0.225586972
-0.225586972
-0.6296875
-0.427637236
-0.225586972
-0.225586972
-0.023536708
-0.427637236
-0.225586972
-0.023536708
-0.225586972
-0.023536708
-0.225586972
-0.023536708
-0.225586972
-0.225586972
-0.225586972
-0.225586972
-0.225586972
-0.225586972
0.178513556
0.178513556
-0.6296875
-0.023536708
-0.225586972
-0.023536708
-0.427637236
-0.023536708
-0.427637236
-0.023536708
-0.023536708
-0.225586972
-0.023536708
-0.427637236
0.178513556
1.390819278
1.794919806
1.390819278
1.390819278
1.188769014
1.188769014
1.996974208
9.270800264
输入命令
fin=fopen('1.txt','r')
x1=fscanf(fin,'%f')
输出却显示
fin =

   5


x1 =

   []
怎么回事啊?

笑石头 发表于 2006-12-8 21:45

麻烦,将1.txt放到当前路径里
直接load('1.txt')
就ok了

robin908 发表于 2006-12-8 21:56

不行啊,有如下错误

??? Error using ==> load
Number of columns on line 5 of ASCII file D:\MATLAB6p5\work\1.txt
must be the same as previous lines.

xjzuo 发表于 2006-12-9 09:24

回复

两种方法都可以实现,为什么你的机子就不行?再试试.
将1.txt置于work文件夹,用如下命令:
%%%%%%%%%%%%%%%%%%%%%
fin=fopen('1.txt','r')
x1=fscanf(fin,'%f')
或者
load 1.txt
%%%%%%%%%%%%%%%%%

robin908 发表于 2006-12-9 12:02

问题已解决:原来是先前的.txt的格式是unicode的。另存为文本文档两种方法皆可。:)
页: [1]
查看完整版本: Input .txt file