How to plot a semi-circle?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Casey
el 6 de Feb. de 2012
Comentada: Elisabetta Di Franco
el 26 de Jul. de 2022
How to plot a semi-circle and if I want just the curve of of the semi-circle and the radius of the circle is 500m?
Thanks
0 comentarios
Respuesta aceptada
Wayne King
el 6 de Feb. de 2012
theta = 0:.01:pi;
y = 500*exp(1j*theta);
plot(real(y),imag(y));
axis([-750 750 -750 750]);
grid on;
4 comentarios
Elisabetta Di Franco
el 26 de Jul. de 2022
This is very useful. I tried this but the semicircle is upsidedown and shifted. How can I change the code?
Más respuestas (0)
Ver también
Categorías
Más información sobre Fit Postprocessing 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!