draw polar curve for r=sin(theta/2)
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
draw polar curve for r=sin(theta/2)
Respuestas (1)
vamshi sai yele
el 28 de Sept. de 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
0 comentarios
Ver también
Categorías
Más información sobre Polar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!