plot a snake graph

4 ビュー (過去 30 日間)
Harry S
Harry S 2019 年 3 月 18 日
編集済み: Harry S 2019 年 3 月 18 日
How to plot a continuous graph on X-Y plane which follows pattern like
x=0:1:10; y=0;
plot (x,y);
hold on;
then y=0.1; x=10:-1:0;
plot (x,y);
hold on;
.
.
.
.
.
upto y=10; x=10; % the plot should look like a snake
  2 件のコメント
KSSV
KSSV 2019 年 3 月 18 日
How about using sin?
Harry S
Harry S 2019 年 3 月 18 日
編集済み: Harry S 2019 年 3 月 18 日
I want my plot to be in this manner with equal spacing

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

採用された回答

KSSV
KSSV 2019 年 3 月 18 日
Play around with this:
x = 1:100 ;
y = 1:100 ;
ind1 = reshape(y,5,[])' ;
y(ind1(1:2:end,:)) = -0.5 ;
y(ind1(2:2:end,:)) = 0.5 ;
plot(y,x)
xlim([-1 1])

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by