Return figure handle from a function

조회 수: 29 (최근 30일)
Srikanth Nayak
Srikanth Nayak 2017년 7월 12일
댓글: Srikanth Nayak 2017년 7월 12일
I have a function that plots two variables and returns the plot handle. This function is currently returning a line object instead of a figure. How can I force MATLAB to return a figure?
%%Plotting function
function li = liner(a,b)
li = plot(a,b);
end
%% From prompt >> a =0:1:10; >> c = liner(a, 2*a); >> class(c)
ans =
'matlab.graphics.chart.primitive.Line'

채택된 답변

Jan
Jan 2017년 7월 12일
편집: Jan 2017년 7월 12일
function FigH = liner(a,b)
LineH = plot(a,b);
FigH = ancestor(LineH, 'figure');
end
This replies the figure the plot is created it. This works if the figure was opened before, or implicitely by the plot command. If you want a new figure in every case:
function FigH = liner(a,b)
FigH = figure;
plot(a,b);
end

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2017년 7월 12일
Try this?
%%Plotting function
function li = liner(a,b)
li = figure;
plot(a,b);
end

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by