How to draw a figure with x axis of a(i) and y axis of a(i+1)?

1 回表示 (過去 30 日間)
xingjian yang
xingjian yang 2016 年 4 月 14 日
コメント済み: xingjian yang 2016 年 4 月 14 日
Suppose I have a array of a(i), how do I draw this figure?

採用された回答

Walter Roberson
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))
  1 件のコメント
xingjian yang
xingjian yang 2016 年 4 月 14 日
Thank you! How can't I figure it out :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by