How to change coordinates of the center of a radar plot?

4 views (last 30 days)
Hi all,
Im using the radarplot function. You can find the code for this function in the link below:
Using this function I get the following image:
The center of this plot is at (0,0). I want to know if there is a way to change these coordinates using ginput . Any advice will be appreciated. Thanks.

Answers (1)

Naren
Naren on 30 Mar 2023
Hey Shahab,
I understand you are trying to change the centre of the plot using ginput. If an offset is given to the plot, it will just move the plot in some direction, and ginput just stores the point on the plot that is selected. To understand this, open the radarplot function and go through the following code.
R=[R R(:,1)];
[Theta,M]=meshgrid(2*pi/n*(0:n)+pi/n,ones(1,size(R,1)));
X=R.*sin(Theta);
Y=R.*cos(Theta);
A=plot(X',Y','LineWidth',2);
MAXAXIS=max(max(R))*1.1;
axis([-MAXAXIS MAXAXIS -MAXAXIS MAXAXIS]);
axis equal
axis off
To change the centre of the plot, the value of MAXAXIS has to be changed, which moves the plot.
Hope this solves your issue.

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!