フィルターのクリア

Plot 2 1x4 matrices

3 ビュー (過去 30 日間)
Anastasia Zistatsis
Anastasia Zistatsis 2021 年 2 月 4 日
編集済み: the cyclist 2021 年 2 月 4 日
I'm trying to plot these two matricies: x = [1 4 4 1]; y = [1 1 4 4];
They're supposed to be coordinates to create this
I know it's probably a very simple solution, but whatever plot attempt I make, only a line shows up on the graph. Please let me know! Thank you

採用された回答

the cyclist
the cyclist 2021 年 2 月 4 日
編集済み: the cyclist 2021 年 2 月 4 日
Here is one way:
x = [1 4 4 1];
y = [1 1 4 4];
figure
patch(x,y,'b')
set(gca,'XLim',[0 5],'YLim',[0 5])
That last line is only to show create a little space around the rectangle.
  3 件のコメント
Anastasia Zistatsis
Anastasia Zistatsis 2021 年 2 月 4 日
it is another matrice
the cyclist
the cyclist 2021 年 2 月 4 日
編集済み: the cyclist 2021 年 2 月 4 日
Please be more specific than "it doesn't work". Does it give an error message? Does it show something unexpected?
But, I'll make a guess here, that the second patch replaced the first one, which is the default behavior. You can use the hold command:
x = [1 4 4 1];
y = [1 1 4 4];
x2 = [1 3 3 1];
y2 = [1 1 3 3];
figure
hold on
patch(x,y,'b')
patch(x2,y2,'r')
set(gca,'XLim',[0 5],'YLim',[0 5])

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by