フィルターのクリア

I need help to how to solve this

1 回表示 (過去 30 日間)
makis
makis 2021 年 9 月 6 日
編集済み: Image Analyst 2022 年 5 月 9 日
  2 件のコメント
DGM
DGM 2021 年 9 月 6 日
編集済み: DGM 2021 年 9 月 6 日
Solve what, exactly? Describe the problem. What is the importance of the graph?
makis
makis 2021 年 9 月 6 日
編集済み: Image Analyst 2022 年 5 月 9 日
I have to make a program and when I run it, it has to make these two shapes.
I am trying to pass a test, and, in one of the questions, the professor asked us to make this.

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

回答 (1 件)

Chunru
Chunru 2021 年 9 月 6 日
r_shape = [-1 0; 0 -1; 1 0; 0 1];
t_shape = [-0.5 -0.866; 1 0; -0.5 0.866];
plot(r_shape([1:end 1], 1), r_shape([1:end 1], 2), 'r-');
hold on
plot(t_shape([1:end 1], 1), t_shape([1:end 1], 2), 'b--');
axis equal
grid on
axis([-1 1 -1 1])
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 9 月 6 日
This was not only homework but a test !

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by