How to polarplot theta=3*pi/4 ?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
theta=3*pi/4
2 comentarios
Thorsten
el 31 de Oct. de 2016
This would be just a single point. Are you sure that this is what you want?
Respuestas (3)
Star Strider
el 31 de Oct. de 2016
Editada: Star Strider
el 31 de Oct. de 2016
theta = 3*pi/4;
figure(1)
plot(theta, 'pg')
EDIT — Using the polar plot:
theta = 3*pi/4;
figure(1)
polar(theta*[1 1], [0 1], '-pg')
0 comentarios
Thorsten
el 1 de Nov. de 2016
theta = 3/4*pi;
plot([0 cos(theta)], [0 sin(theta)])
axis equal
axis([-1 1 -1 1])
0 comentarios
Steven Lord
el 1 de Nov. de 2016
r = [-5 5];
theta = repmat(3*pi/4, size(r));
polarplot(theta, r)
Adjust the values in r to suit your desired polar axes radius.
0 comentarios
Ver también
Categorías
Más información sobre Polar Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!