How do I combine the polar plot and cartesian coordinate together?
22 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Minthorn Ph'w
am 14 Mai 2018
Kommentiert: Minthorn Ph'w
am 14 Mai 2018
I want to draw and hold the radiation pattern from polar plot on the x,y coordinate. Is it possible?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 14 Mai 2018
First use polar() to draw the polar plot you want. Note this is the older polar() not the newer polarplot(). Then "hold on" and draw the cartesian points you want. Then you can use uistack() to move the cartesian points to "below" the polar points.
Do not try to draw the cartesian first and then the polar(): if you do that then polar() will not draw the radii and angle markings.
Weitere Antworten (1)
KSSV
am 14 Mai 2018
Convert your polar coordinates to Cartesian using pol2cart and plot.
1 Kommentar
Siehe auch
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!