i have to read a text file which contains 50 rows and 2 colums... 1 have to assign the 1st column into one variable and 2nd column to another variable.. what i have to do?
1 回表示 (過去 30 日間)
古いコメントを表示
i have to read a text file consists of numbers which is arranged in 50 rows and two columns ... means in a matrix form 50*2[m*n].. i have to assign the first column to a variable A ... and second column to a variable B... what i have to do???
0 件のコメント
採用された回答
Rizwana
2014 年 1 月 22 日
1st you need to import your .txt file from the drop down menu by clicking file on upper corner of your matlab window. Then A = data(:,1); reads 1st coulmn and B=data(:,2); data is the name of .txt file
0 件のコメント
その他の回答 (1 件)
Shameer Parmar
2014 年 1 月 22 日
Data = importdata('<txt filename>');
Column1 = Data(:,1);
Column2 = Data(:,2);
You can also create your own script by putting these command into it OR you can directly use these command by keeping your file into Matlab current directory.
参考
カテゴリ
Help Center および File Exchange で Low-Level File I/O についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!