How to automatically get the axis of a figure in Live Editor?

조회 수: 18 (최근 30일)
I'm working with images on a live script and it would be much faster for me if it was possible to get the figure axis. However I don't even manage to get the figure handles so I don't know if a solution exists?
Thank you
  댓글 수: 2
Riccardo Scorretti
Riccardo Scorretti 2022년 5월 2일
Normally, if you create new figures by:
hndl = figure();
you should get the handle to the figure. Can you provide a simple example of what you need to do?
Grelier Matthieu
Grelier Matthieu 2022년 5월 2일
Thanks but this does not work inside the Live Editor it seems. I just display an image with imagesc and then I want to zoom on one of the feature and basically extract the associated axis limits. It's easily achieved outside the Live Editor but it seems the figures react differently in live scripts.

댓글을 달려면 로그인하십시오.

채택된 답변

Cris LaPierre
Cris LaPierre 2022년 5월 2일
편집: Cris LaPierre 2022년 5월 2일
You can get the axes object in a figure the same way you would outside of a live script.
Option 1: capture the axes object by creating it with code. Be sure to specify the target axes when plotting, or the plot command will create a new figure and axes.
ax = axes;
plot(ax,x,y)
Option 2: plot your data as you normally would. Once created, capture the current axes using the gca command.
plot(x,y)
ax = gca;
This works for most plot types, but some plots may behave differently. If neither approach works for you, please share your code.
  댓글 수: 3
Cris LaPierre
Cris LaPierre 2022년 5월 2일
I see. Where are you calling the get function? In the live editor or in the command window?
I think what is happening here is that the image you see in the livescript is a snapshot of the figure at a specific time, and not the actual figure. So while you can zoom in and otherwise interact with the snapshot, it is not the axes captured in ax.
I'm afraid I don't know a way to do exactly what you want using the image embedded in a live script. Ideas that immediately come to mind are to either
1. use the Update Code option to add code to your script to update the actual figure axes to those you established via manually zooming. This appears automatically
2. pop the figure out of the live script so that it behaves as you are expecting. You can do that programmatically with the following code. Now when you interact with the figure window that opens, you are modifying the axes captured in ax.
figure('Visible','on')
Grelier Matthieu
Grelier Matthieu 2022년 5월 3일
I was calling the get function in the live editor. I see. I think your first idea is the best compromise so I'll go for it. Thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2022년 5월 2일
If you call the function that displays the image with an output argument, you can determine which figure contains that graphics object using the ancestor function.
h = plot(1:10);
f = ancestor(h, 'figure')
f =
Figure (1) with properties: Number: 1 Name: '' Color: [1 1 1] Position: [671 661 577 433] Units: 'pixels' Show all properties
f.Color = 'r';
The ancestor function lets you ask for other ancestors as well:
ax = ancestor(h, 'axes')
ax =
Axes with properties: XLim: [1 10] YLim: [1 10] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
isequal(f, ancestor(ax, 'figure')) % true
ans = logical
1
  댓글 수: 1
Grelier Matthieu
Grelier Matthieu 2022년 5월 3일
Thanks for the answer. Same problem as before though, it works outside the Live Editor but not in it. It seems it cannot be done in lives scripts...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by