Is it possible to use a function with 2 outputs and sometimes with 4 outputs?
Mostra commenti meno recenti
And how to order the output variables? [x1,x2,x3,x4] = f(); or [x4,x3,x2,x1] = f();
2 Commenti
Stephen23
il 26 Lug 2018
"Is it possible to use a function with 2 outputs and sometimes with 4 outputs?"
Yes.
"And how to order the output variables?"
The order of the output arguments is determined by how they are defined in the function itself. What you call them in the calling workspace is totally irrelevant.
Adam Danz
il 26 Lug 2018
Also see
help varargout
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Argument Definitions in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!