how to read a file and convert to matrix format

2 ビュー (過去 30 日間)
Sharen H
Sharen H 2012 年 9 月 28 日
i am reading a file which has the values in the form
v -0.141202 5 5
v 3 5 5
v 4 5 5
i want to convert this in the form of a cell ignoring space ie in the form of 3X4 matrix
Thanks in advance

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 9 月 28 日
fid = fopen('filename.txt');
out=textscan(fid,'%s')
fclose(fid);
out=reshape(out{:},4,[])'
  2 件のコメント
Sharen H
Sharen H 2012 年 9 月 29 日
I am trying to read multiple files i changed the code like this but i am getting some errors it says invalid identifier
for j =1:4
fid(j) = fopen( sprintf( 'Secret1%i.obj',j),'r' )
out(j)=textscan(fid(j),'%s')
fclose(fid(j));
out{j}=reshape(out{:},4,[])'
end
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 1 日
for jj =1:4
fid=fopen(sprintf('Secret1%d.obj',jj),'r' )
out=textscan(fid,'%s')
fclose(fid);
res{jj}=reshape(out{:},4,[])'
end

サインインしてコメントする。

その他の回答 (1 件)

Sumit Tandon
Sumit Tandon 2012 年 9 月 28 日
There are several options - e.g. using Import Wizard or TEXTSCAN command.
Check out this link for more ideas.

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by