Borrar filtros
Borrar filtros

get axis value of a subplot

54 visualizaciones (últimos 30 días)
Max Müller
Max Müller el 28 de Jul. de 2014
Comentada: Azzi Abdelmalek el 11 de Ag. de 2014
hey Guys
I ve created a program which creates 9 different subplots with 3 different plot lines. My Questions is: how can i get the x andy values of each subplot.
for example: One of the titles of my plot is simply A. Another is B. How can i get the values in an array which has the same name.
Thanks
  2 comentarios
Patrik Ek
Patrik Ek el 28 de Jul. de 2014
Editada: Patrik Ek el 28 de Jul. de 2014
I think that eval is the way to go then. However, if not absolutely necessary I recommend you to not go there, see alternatives ot eval. One problem is that eval is evaluated in runtime.
Azzi Abdelmalek
Azzi Abdelmalek el 11 de Ag. de 2014
Max , please don't add all these answers, if you want to add a comment , just under my answer or someone else's answer, click on comment on this answer

Iniciar sesión para comentar.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 28 de Jul. de 2014
Editada: Azzi Abdelmalek el 28 de Jul. de 2014
% -----Example----------------------
x=repmat((1:10)',1,9);
y=rand(10,9);
for k=1:9
subplot(3,3,k);
plot(x(:,k),y(:,k));
end
%------The code-----------------------
h=findobj(gcf,'type','axes');
for k=1:9
f=get(h(k),'children');
xi{k}=get(f,'xdata');
yi{k}=get(f,'ydata');
end
outx=fliplr(cell2mat(xi')');
outy=fliplr(cell2mat(yi')');
%-------------test --------------------
isequal(x,outx)
isequal(y,outy)

Más respuestas (3)

Max Müller
Max Müller el 11 de Ag. de 2014
Hey Azzi,
hope u can help me one more time. ur code works perfect for every normal plot. But if i use it on my Plot, it shows me that my chosen Plot has 42 handles ??????? my Plot contains 41 points. I guess this has to mean sth. Can u pls tell me why my plot has 42 children-handles ?
  1 comentario
Adam
Adam el 11 de Ag. de 2014
Sounds like you have plotted each point as its own individual line object

Iniciar sesión para comentar.


Max Müller
Max Müller el 11 de Ag. de 2014
Somehow this must be the case but actually i am ploting a few amount of Arrys into one axes. The x value is always the same and th y value keeps changing...maybe this is the reason... gona check it.
  1 comentario
Max Müller
Max Müller el 11 de Ag. de 2014
Editada: Max Müller el 11 de Ag. de 2014
this code is the reason
text(theta,y,strcat({' '},names),'Interpreter','none','rotation',90)
theta = x / y = y / names = Name of the point
Is there an alternative for this code ?

Iniciar sesión para comentar.


Max Müller
Max Müller el 11 de Ag. de 2014
When every handle represents one Point. How can I reach its value.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by