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

1 回表示 (過去 30 日間)
Mr M.
Mr M. 2017 年 7 月 17 日
編集済み: Stephen23 2017 年 7 月 17 日
How to write a function which can be used as y1 = myfunc(), or [y2,z] = myfunc(), but y1 will not be equal to y2!

採用された回答

Stephen23
Stephen23 2017 年 7 月 17 日
編集済み: Stephen23 2017 年 7 月 17 日
Use nargout, something like this:
function [X,Y] = myfun()
if nargout==2
X = 1;
Y = 2;
else
X = 0;
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeArgument Definitions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by