How to create a polar rectangle in Matlab
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ron Beck
am 28 Feb. 2018
Kommentiert: Star Strider
am 1 Mär. 2018

Please help me determine how to create a polar rectangle (not sure what to call it) in Matlab. The closest I have gotten is using the linspace function for the two arc and a simple line to connect the two arcs. I can't seem to cleanly connect the four line segments to make a continuous shape.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 28 Feb. 2018
I am not certain what you want.
Try this:
theta = linspace(0, 2*pi, 5);
figure(1)
polarplot(theta, ones(size(theta)))
8 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!
