How to plot part of the data from larger data file?
2 ビュー (過去 30 日間)
古いコメントを表示
I have a text file containing 5 columns and 63 rows of data. I want to extract first 21 rows of first 2 columns and plot them in matlab. How can i do it?
0 件のコメント
採用された回答
bio lim
2015 年 8 月 7 日
A = rand(63, 5);
sub_A = A(1:21, [1 2]);
You can extract the 21 rows of the first two columns like this and proceed with your plot.
その他の回答 (1 件)
Walter Roberson
2015 年 8 月 7 日
The easiest way is to load all of the data and then index it to extract the portion you want.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Data Preparation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!