How do I make a graph?

3 ビュー (過去 30 日間)
Vejas Nupustas
Vejas Nupustas 2021 年 12 月 17 日
コメント済み: John D'Errico 2021 年 12 月 18 日
x = 3*(t − sin(t)) , y = 3*(1 − cos(t)), 0 ≤ t ≤ 2*pi
  1 件のコメント
John D'Errico
John D'Errico 2021 年 12 月 18 日
PLease stop posing your homework problems. This is the 4th one you have now posted, all with no effort made.

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

採用された回答

Voss
Voss 2021 年 12 月 18 日
t = 0:0.001:2*pi;
x = 3*(t-sin(t));
y = 3*(1-cos(t));
figure();
plot(x,y);

その他の回答 (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