Is it possible to write a function with two different kind of output modes?

1 Ansicht (letzte 30 Tage)
How to write a function which can be used as y1 = myfunc(), or [y2,z] = myfunc(), but y1 will not be equal to y2!

Akzeptierte Antwort

Stephen23
Stephen23 am 17 Jul. 2017
Bearbeitet: Stephen23 am 17 Jul. 2017
Use nargout, something like this:
function [X,Y] = myfun()
if nargout==2
X = 1;
Y = 2;
else
X = 0;
end
end

Weitere Antworten (0)

Kategorien

Mehr zu Argument Definitions 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!

Translated by