draw polar curve for r=sin(theta/2)
27 ビュー (過去 30 日間)
古いコメントを表示
draw polar curve for r=sin(theta/2)
回答 (1 件)
vamshi sai yele
2022 年 9 月 28 日
Hello,
I understood that you want to plot polar curve for 'sin(theta/2)'.
MATLAB has provided us with a simple function to plot the polar curves and below is the solution for your request.
theta = 0:0.01:2*pi;
v = sin(theta/2);
r=polarplot(v);
Simply by using ‘polarplot’ function we can achieve this and for more detailed information on the same, kindly refer to this link
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!