フィルターのクリア

how to plot this function with figure

3 ビュー (過去 30 日間)
marwan alamah
marwan alamah 2020 年 6 月 9 日
コメント済み: Adam Danz 2020 年 6 月 9 日
In the same figure, plot:1) sin(x), x+1, x3-3, in the rank -2 to 3.14
2)Plot x=8×cos⁡(t),y=4√(sin⁡(t)),z=-4√(sin⁡(t)) t= [0,2π]
3)z=(sin√(x^2+y^2 ))/√(x^2+y^2 )
  4 件のコメント
David Hill
David Hill 2020 年 6 月 9 日
You likely want to break x into a larger array.
x=-2:.01:3.18;
You can plot all at once with one plot command
plot(x,y,x,z,x,m);
Adam Danz
Adam Danz 2020 年 6 月 9 日
In addition to David's advice, you'll also need to apply the math in your question, of course. Those functions should be pretty easy to identify.

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

回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by