plot graph from array
2 ビュー (過去 30 日間)
古いコメントを表示
i got an array of 100 raws and 9 colms . how can i plot the data from this array ?
0 件のコメント
回答 (1 件)
Guillaume
2017 年 3 月 17 日
Without you telling us more about what the data in that matrix represents and what you want to display out of it how can we tell you which is more adequate?
2 件のコメント
Guillaume
2017 年 3 月 18 日
plot(yourmatrix(:, 1), yourmatrix(:, 2));
would plot each of column 2-9 against column 1.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!