polar/plot incompatibility
Show older comments
Can any one explain the design choise that causes this:
polarscatter(linspace(0,pi*2/3,100).^2,...
linspace(0,pi*2/3,100),...
32,...
linspace(0,pi*2/3,100),'filled')
hold on
plot([-1 1],[1 -1],'m')
Error using newplot
Adding Cartesian plot to polaraxes is not supported.
Error in matlab.graphics.internal.newplotwrapper (line 11)
axReturn = newplot(varargin{:});
From my perspective picking polar/cartesian representation of my grid is just that - a choise of either cartesian grid-lines of polar grid-lines. Why should it not be possible to add objects with cartesian coordinates to a region with polar grid-lines or the other way around?
2 Comments
Cris LaPierre
on 28 Oct 2025
What version of MATLAB are you using?
Bjorn Gustavsson
on 29 Oct 2025
Answers (1)
The original coordinate system predominates, and the subsequent plot call respects that.. You are plotting two points,
and
.
If you want to plot them as
and
, you need to transform them --
polarscatter(linspace(0,pi*2/3,100).^2,...
linspace(0,pi*2/3,100),...
32,...
linspace(0,pi*2/3,100),'filled')
hold on
% plot([-1 1],[1 -1],'m')
[r,a] = cart2pol([-1 1],[1 -1]) % Transform To Polar Coordinates
plot(r,a)
figure
plot([-1 1],[1 -1])
axis('equal')
grid
.
13 Comments
Bjorn Gustavsson
on 29 Oct 2025
Star Strider
on 29 Oct 2025
I believe that is the way MATLAB has always worked. For example, if the first plot is in logarithmic coordinates in any axis, subsequent plots are automatically in the same axes, even if plotted with plot rather than loglog or semilog. It has never been possible to use Cartesian coordinates with polar axes, or overplot one with the other.
Bjorn Gustavsson
on 29 Oct 2025
Star Strider
on 29 Oct 2025
Edited: Star Strider
on 29 Oct 2025
That is a design decision you will have to discuss with MathWorks. It makes sense to me, however it would also be nice to be able to 'overlay' cartesian and polar coordinate plots.
Perhaps using images of both and overlaying one on top of the other (with appropriate transparency characteristics) would be an option. That is hardly ideal, however it could be a work-around.
EDIT -- (29 Oct 2025 at 16:42)
One option would be to draw polar coordinates on Cartesian axes, and then draw yoiur Cartesian plot on the same axes. See my original answer in fill area between two polar curves for applicable code for the polar plot in Cartesian axes. (This was before polar patch plots became easily available in the last year or so.)
.
Walter Roberson
on 29 Oct 2025
One might as well complain that plotting to a cartesian axes cannot be combined with plotting to a map axes.
Bjorn Gustavsson
on 30 Oct 2025
Edited: Bjorn Gustavsson
on 30 Oct 2025
Bjorn Gustavsson
on 30 Oct 2025
Star Strider
on 30 Oct 2025
MathWorks design decisions are definitely not a topic that I can comment on with either authority or credibility.
Bjorn Gustavsson
on 30 Oct 2025
Walter Roberson
on 30 Oct 2025
So all that the code would have to do is assume altitude 0 for 2D points, and altitude given by Z for 3D points. Using whichever spherical/elipsoidal/gaoidal is in effect for the axes. This would be entirely consistent with the effect of rotating 2D graphs using hg transforms.
Star Strider
on 30 Oct 2025
@Bjorn Gustavsson -- It might be easiest to copy the URL of this thread and include it in a discussion that you wnat to post. Everyone can then click on the URL to see it here.
I have read several discussions, however I have never posted to the 'Discussions' site. I am not certain what is involved.
Bjorn Gustavsson
on 30 Oct 2025
This chat is an interesting read. I want to make sure I understand the idea: @Bjorn Gustavsson is your curiously about why plot(x,y) interprets the arguments as polar values (theta, radius) when plotting to polar axes rather than sticking to a Cartesian interpretation?
I can see that argument.
plot() is like a swiss army knife. It can take datetime, duration, categorical, and various types of numeric data (e.g. geographical, polar, Cartesian). Plot interprets the inputs based on the axis/ruler type. For example, the first line below creates a datetime ruler for the x-axis. The x-values of the 3rd line are therefore interpreted as durations (number of days).
plot(datetime(2000,1,1:5), 1:5, '-bo')
hold on
plot(1:5, 3:7, '-rd')
Or, is the question about why Euclidean lines are used to connect points in polar space? I've also wondered this. We recently showed how to get around this in a recent article in the Graphics and App Building blog.
I, personally, would like to see an option to connect points in polar space using arch interpolation. I also mentioned this in the following thread:
Categories
Find more on Polar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


