How to plot (x,y) subjected to any function.
1 回表示 (過去 30 日間)
古いコメントを表示
How to plot (x,y) subjected to the equation cot(y) - cot(x) = 1.
0 件のコメント
採用された回答
Walter Roberson
2017 年 12 月 19 日
fimplicit(@(x,y) cot(y)-cot(x)-1)
2 件のコメント
Walter Roberson
2017 年 12 月 19 日
No it will not. cot() is for radians. If you want degrees you should have specified cotd()
fimplicit(@(x,y) cotd(y) - cotd(x) - 1, [-720 720 -720 720])
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!