Saving an image from subplots in a uipanel

조회 수: 4 (최근 30일)
davidwriter
davidwriter 2018년 6월 7일
댓글: davidwriter 2018년 6월 8일
I am running a live system that is controlled via a complex figure. One part of this figure is a uipanel (named handles.APlot) that contains three subplots - so:
subplot(311, 'Parent', handles.APlot);
handles.plotx=animatedline('Color','b','LineWidth',1);
ylabel('x (m)');
xlabel('time (s)');
subplot(312, 'Parent', handles.APlot);
handles.ploty=animatedline('Color','b','LineWidth',1);
ylabel('y (m)');
xlabel('time (s)');
subplot(313, 'Parent', handles.APlot);
handles.plotz=animatedline('Color','b','LineWidth',1);
ylabel('z (m)');
xlabel('time (s)');
This is continually updated until the end of a run:
hold on;
addpoints(handles.plotx,timeelapsed,X_mean);
addpoints(handles.ploty,timeelapsed,Y_mean);
addpoints(handles.plotz,timeelapsed,Z_mean);
hold off;
where timeelapsed is the time after start in seconds and the three means are positions in X, Y and Z. At the end of a run we get three nice graphs showing the events in X, Y, Z during the run.
My question is: How can I save these graphs to a file? A uipanel is not a figure so I can't access a frame. Matlab seems to indicate that there is an internal figure generated when you place axes(subplots) on a uipanel, but I can't find any way to access this.

채택된 답변

Daniel Dolan
Daniel Dolan 2018년 6월 7일
You could copy the axes objects to a temporary figure.
name={'plotx' 'ploty' 'plotz'};
pos=getpixelposition(get(handles.(name{1),'Parent');
new=figure('Units','pixels','Position',pos);
for n=1:numel(name)
copyobj(handels.(name{n}),new);
end
print(new,'-dpdf','myplots.pdf');
delete(new);
  댓글 수: 1
davidwriter
davidwriter 2018년 6월 8일
A minor modification and it worked perfectly - thank you.
name={'plotx' 'ploty' 'plotz'};
pos=getpixelposition(handles.APlot');
newfig=figure('Units','pixels','Position',pos, 'Visible','off');
for n=1:numel(name)
copyobj(handles.(name{n}),newfig);
end
saveas(newfig, 'PlotXYZ.jpg');
delete(newfig);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by