Live scripts: Get axes handle of figure NOT stored in live script.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a function which has plotted a series of functions as non-livescript plots, but not passed the plot handles out.
I am trying to use gca within my code to grab the most recently selected plot.
However, since (I assume) the live script is based off some form of gui, the gca function only grabs the handle of (I assume) plots within the live script window itself.
How do I grab the handle of a plot that is not located in the livescript?
1 comentario
Julian Dönges
el 6 de Ag. de 2022
I am also looking for a solution to do this programmatically, evalin and findobj do not work.
You can type h = gca into the command window and get the handle manually, but that is not always feasible.
Respuestas (1)
Adam Danz
el 6 de Ag. de 2022
Editada: Adam Danz
el 8 de Ag. de 2022
This is why gca should usually be avoided.
Here are some solutions in order of robustness.
- Change the function so that it outputs the axis handle (or at least a handle to an object within the axes, see #2). Alternatively, you could create the axes ahead of time, store the handle, and then call your function if your function is set up to work with pre-existing axes.
- If you have the handle (h) to an object within the axes use ax=ancestor(h,'axes')
- If you have the figure handle (f), use ax=gca(f), assuming there is only 1 axes in the figure.
- This one is a worst-case-scenario but if you know the axes was just generated and gca is returning the wrong axes, you can record a list of axes prior to the line that creates the axes and then store another list of all axes after the axes is created. Then compare the two lists to find the new one:
% option 4
originalAxesList = findall(groot,'type','axes');
nexttile % example, call function that creates new axes
updatedAxesList = findall(groot,'type','axes');
isNewAxes = ~ismember(updatedAxesList, originalAxesList);
newAxes = updatedAxesList(isNewAxes)
0 comentarios
Ver también
Categorías
Más información sobre Graphics Object Programming 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!