필터 지우기
필터 지우기

Matlab figure

조회 수: 1 (최근 30일)
Bahareh
Bahareh 2011년 12월 30일
Hello All,
I have a matlab figure consists of two plots in one graph. I would like to split them into two graphs using subplot(). Can anybody tell me how I can do it without having the code? Thanks.

채택된 답변

Matt Kindig
Matt Kindig 2011년 12월 30일
All of the data that is presented in the figure is provided in the figure file itself, so you don't need the original M-file that generated the figure. You can use MATLAB's various handle functions to get the data. For example,
1. Click on one of the line objects (data traces) in the figure.
2. At the command prompt, type:
h = gco;
This creates a variable "h" with the handle for the currently selected object.
3. Define two new variables x and y as:
x = get(h,'XData');
y = get(h,'YData');
This is now the data for that figure.
Now define a new figure, and plot this data, i.e.:
figure();
subplot(1,2,1);
plot(x,y);
Do this for all of the data traces that you need, making sure to use subplot appropriately.
EDIT: Editted to improve formatting.

추가 답변 (1개)

Jan
Jan 2011년 12월 30일
You can save the figure as a fig-file and load it again using load, because fig-files are written in the MAT-file format. Then you find all required values in the fields of the imported struct.
data = load('filename.fig', '-mat')
I admit, this is not convenient, but exhaustive.
  댓글 수: 1
Bahareh
Bahareh 2011년 12월 31일
Thanks a lot Mr. Jan!

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

카테고리

Help CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by