3

我有一个pts带有 2d 点 (x,y) 的文件,如下所示:

version: 1
n_points: 5
{
159.128 108.541
230.854 109.176
164.841 179.633
193.404 193.597
192.769 229.143
}

如何读取此文件并将此数据导入 Matlab 中的变量?

谢谢。

4

1 回答 1

3

我会那样做

 FileId=fopen(Filename)
 npoints=textscan(FileId,'%s %f',1,'HeaderLines',1)

 points=textscan(FileId,'%f %f',npoints{2},'MultipleDelimsAsOne',1,'Headerlines',1)
 % now you have the values you want you can put them in a matrix or any variable
 Y=cell2mat(C);
于 2013-11-07T21:11:16.843 回答