import data from file into an array
8 ビュー (過去 30 日間)
古いコメントを表示
how do I import data from a text file into an array with the same dimensions in the file?
the file has a 3 x 13 array in the form:
[1,2,3,4,5,6,7,8,9,10,11,12,13;
13,12,11,10,9,8,7,6,5,4,3,2,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1]
these are not the actual floating point numbers, but that is the layout of the file. how do I import or fscanf this into an array in a MATLAB program?
Thanks
回答 (1 件)
Azzi Abdelmalek
2016 年 4 月 3 日
編集済み: Azzi Abdelmalek
2016 年 4 月 3 日
A=importdata('yourfile')
or
A=dlmread('yourfile')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!