Get current axes from multiple figures.

94 vues (au cours des 30 derniers jours)
Gurkenglas
Gurkenglas le 11 Mai 2015
Commenté : dpb le 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]);

Réponse acceptée

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

Plus de réponses (4)

dpb
dpb le 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 commentaires
Walter Roberson
Walter Roberson le 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 le 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.

Connectez-vous pour commenter.


Stephen23
Stephen23 le 11 Mai 2015
Modifié(e) : Stephen23 le 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 le 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 le 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 commentaires
Alexander
Alexander le 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 le 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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by