Borrar filtros
Borrar filtros

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

7 visualizaciones (últimos 30 días)
Mariam Shahab
Mariam Shahab el 20 de Mzo. de 2023
Respondida: Naren el 30 de Mzo. de 2023
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.

Respuestas (1)

Naren
Naren el 30 de Mzo. de 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.

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by