how can I change the current axes in a GUI?

299 visualizaciones (últimos 30 días)
Volker
Volker el 2 de Feb. de 2011
Comentada: Rik el 13 de Jun. de 2022
Hi, how can I change the current axes in a GUI? I try to use the line function, but I don’t know how to activate the right axes for plotting in the wanted figure. I guess, there should be a simple solution, but I can’t find.
Greetings
Volker
  3 comentarios
Qingyu
Qingyu el 14 de Mayo de 2019
WCJHunter's answer works great! Thank you!
Rik
Rik el 13 de Jun. de 2022
Comment posted as flag by Xb wang:
This ansewer is very useful.I spend servral days to find tha ways.Tank you !

Iniciar sesión para comentar.

Respuesta aceptada

Paulo Silva
Paulo Silva el 2 de Feb. de 2011
Here's one example:
axes(handles.axes2); %set the current axes to axes2
axes(h) makes existing axes h the current axes and brings the figure containing it into focus. It also makes h the first axes listed in the figure's Children property and sets the figure's CurrentAxes property to h. The current axes is the target for functions that draw image, line, patch, rectangle, surface, and text graphics objects.
  8 comentarios
Ryan
Ryan el 23 de Ag. de 2014
Thanks Peters, the setting in GUIDE were my issue
Corne van Zyl
Corne van Zyl el 22 de Abr. de 2019
Thank you for this!

Iniciar sesión para comentar.

Más respuestas (4)

thomeou
thomeou el 20 de Jun. de 2013
Thanks for the post I wasted one and a half day with this same problem

Chris Rorden
Chris Rorden el 22 de Jul. de 2013
Thanks, I also wasted a lot of time on this.

Itziar Uzqueda
Itziar Uzqueda el 23 de Feb. de 2017
Hi! My problem is that when I try to plot an animatedline into axis1, instead of plotting there, another window is opened. also, when I try to use axes(handles.axes1) it says:
ans =
handle to deleted Axes
Mi code is here:
function Medir_Callback(hObject, eventdata, handles)
s = abrir_puerto();
handles.x=1:20;
handles.h=animatedline('Marker','o','LineWidth',1,'Color','k');
for i=1:(length(handles.x))
handles.distancia(i)=fscanf(s,'%d');
addpoints(handles.h,i,handles.distancia(i));
drawnow;
end
cerrrar_puerto(s);
I want it to be plotted in my Matlab GUI.
Thanks, Itziar
  2 comentarios
Adam
Adam el 23 de Feb. de 2017
You should start a new question rather than post this as an answer.
You aren't specifying any axes though.
doc animatedline
In common with most plotting functions this includes a syntax that allows you to specify the axes handle as the first argument. Use it!
Itziar Uzqueda
Itziar Uzqueda el 23 de Feb. de 2017
oh, sorry i didn't notice, i'm new in this kind of matters.
The probelm is that if i specify axes in animatedlines like this it comes to the error below.
handles.h=animatedline('Marker','o','LineWidth',1,'Color','k','Parent', handles.axes1);
Error using animatedline While setting property 'Parent' of class 'AnimatedLine': Cannot set property to a deleted object

Iniciar sesión para comentar.


nadji hadroug
nadji hadroug el 19 de Feb. de 2018
You can see this example : x = 1000*rand(40,1); y = rand(40,1); scatter(x,y) xtickangle(45) ytickangle(90)

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by