draw polar curve for r=sin(theta/2)

52 Ansichten (letzte 30 Tage)
priya
priya am 12 Aug. 2022
Beantwortet: vamshi sai yele am 28 Sep. 2022
draw polar curve for r=sin(theta/2)

Antworten (1)

vamshi sai yele
vamshi sai yele am 28 Sep. 2022
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

Kategorien

Mehr zu Polar Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by