How to plot this type of function?
1 回表示 (過去 30 日間)
古いコメントを表示
2 件のコメント
Walter Roberson
2022 年 8 月 4 日
Strange, I could have sworn I saw someone post code for this involving fplot3()
回答 (1 件)
KSSV
2022 年 8 月 4 日
編集済み: KSSV
2022 年 8 月 4 日
t = linspace(-5,5) ;
x = exp(t) ;
y = 1-exp(-t) ;
z = atan2(y,x) ;
plot(t,z)
3 件のコメント
Walter Roberson
2022 年 8 月 4 日
Note that atan(y./x) is usually better done as atan2(y, x) . The difference is that atan2() will get the right quadrant.
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!