Return figure handle from a function
29 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Srikanth Nayak
am 12 Jul. 2017
Kommentiert: Srikanth Nayak
am 12 Jul. 2017
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'
0 Kommentare
Akzeptierte Antwort
Jan
am 12 Jul. 2017
Bearbeitet: Jan
am 12 Jul. 2017
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
Weitere Antworten (1)
Fangjun Jiang
am 12 Jul. 2017
Try this?
%%Plotting function
function li = liner(a,b)
li = figure;
plot(a,b);
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Graphics Objects finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!