我正在尝试读取从软件(HyperView)创建的文件。 该文件没有文件扩展名。 当我用写字板打开它时,会出现以下内容:
Node ID,
19,
18,
17,
16,
15,
14,
我想将数字添加到矢量中。
我尝试过load,csvread,textread,textscan等。有什么想法(以及如何使用)或者让我知道如何确定文件类型,以便我可以与你分享?
Windows XP,MATLAB R2012a
答案 0 :(得分:0)
假设它们位于text
文件中,您可以使用
fid = fopen('1.txt','r');
C = textscan(fid, '%f %*s', ...
'HeaderLines',1);
fclose(fid);
C{1}
19
18
17
16
15
14