Get current axes from multiple figures.

95 Ansichten (letzte 30 Tage)
Gurkenglas
Gurkenglas am 11 Mai 2015
Kommentiert: dpb am 11 Nov. 2023
Hi,
I have a simulink model and I am trying to plot in real time during the simulation via s-functions. This works. BUT: If I click during simulation with the mouse on the figures, all "line(...)"-fcts are drawn into the last clicked window. This means, the current axes change to the figure that was clicked last. How can I change this behaviour?
For example, this doesnt prevent that the line is drawn into the false figure if the user clicks into a different window:
axes_h = get(fig_h,'CurrentAxes');
line('XData',[0 t],'YData',[0 vel]);

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Mai 2015
Please read why you should always parent your graphics operations here

Weitere Antworten (4)

dpb
dpb am 11 Mai 2015
I don't use Simulink (in fact never even seen an installation), but I think the answer is to save the handle to the axes created when you begin the plot/simulation then use that specific handle instead of using the default form as above which plots to gca.
BTW, line is very unfriendly in that it, unlike plot and friends, doesn't accept a handle; it only knows how to plot to gca. Hence, if you are going to use line, then you need to add
axes(axes_h) % make axes_h current axes object for subsequent line()
prior to the call to line. The problem with this is still it's not atomic so that you can't completely rule out the focus being shifted in between.
I'd suggest plot instead, then
plot(axes_h, ...
works or you can even fold the get inside it to retrieve it (or save the target axes as a persistent global if there is just one instance during the simulation).
  2 Kommentare
Walter Roberson
Walter Roberson am 11 Mai 2015
line(x,y,'Parent',TheAxis)
there are a number of functions that take a 'Parent' parameter, and all of the usual ones that can optionally take an axis as the first argument will accept the 'Parent' name-value pair.
dpb
dpb am 12 Mai 2015
Ah! yeah. Sometimes the trees get in the way of the forest...but it seems peculiar that it's "odd man out" of so many of the plotting functions which do accept a handle; it's a nonorthogonal feature set that makes coding more difficult than should be having to remember the peculiar features.

Melden Sie sich an, um zu kommentieren.


Stephen23
Stephen23 am 11 Mai 2015
Bearbeitet: Stephen23 am 11 Mai 2015
The line documentation clearly lists this syntax:
line(X,Y,Z,'PropertyName',propertyvalue,...)
and the properties includes Parent... which means you can do this:
line('XData',[0,t], 'YData',[0,vel], 'Parent',axes_h)

Gurkenglas
Gurkenglas am 11 Mai 2015
It works! Thanks. Here is my code:
fig_h = figure(...);
axes_h = axes('Parent',fig_h);
line('XData',[0 t],'YData',[0 vel],'parent',axes_h);

Alexander
Alexander am 8 Nov. 2023
In my case, I have a figure handle, but don't have an axis handle saved. Probably a more elegant solution exist, but I've come up with this:
fig = figure(); % this is known
axes %this I need to access
ax = findobj(fig.Children, 'type', 'axes')
  3 Kommentare
Alexander
Alexander am 10 Nov. 2023
Thank you for the detailed answer!
ax = gca(fig);
That solution works perfectly. It is very useful, because help page does not mention that you could pass figure handle as an argument to the gca.
dpb
dpb am 11 Nov. 2023
"...help page does not mention that you could pass figure handle as an argument to the gca."
Indeed, that seems an oversight worthy of a product improvement submittal to TMW support. Dunno that I had ever looked at the specific page before, it just seemed too self-evident that a figure handle would be a valid argument.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by