How to draw a figure with x axis of a(i) and y axis of a(i+1)?
1 回表示 (過去 30 日間)
古いコメントを表示
Suppose I have a array of a(i), how do I draw this figure?
0 件のコメント
採用された回答
Walter Roberson
2016 年 4 月 14 日
plot(a(i), a(i+1))
You will not see much unless your i is a vector of values.
Perhaps what you want to ask about is
plot(a(1:2:end), a(2:2:end))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Graphics Object Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!