Question

j'ai un pts fichier avec des points 2D (x, y) qui ressemble à ceci:

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
}

Comment puis-je lire ce fichier et importer ces données dans des variables dans MATLAB?

Merci.

Était-ce utile?

La solution

Je le ferais comme ça

 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);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top