You can make it more like figure() by using varargout. This way you can avoid having to put a semi-colon at the end.
Change the function call to:
function varargout = sfigure(h)
And add this to the end:
if nargout == 1
varargout{1} = h;
end
5
02 Oct 2008
ROC Curves and Area Under of Them
ROC curves of one or more experiments and the area under of each curve can be computed with this cod
Amac Herdagdelen
Great! :)
5
30 Jul 2007
"Smart"/Silent Figure
Create or switch to a figure without it stealing focus from other windows.
Sorin Z
5
30 Jul 2007
"Smart"/Silent Figure
Create or switch to a figure without it stealing focus from other windows.
Comment only