Is it possible to use a function with 2 outputs and sometimes with 4 outputs?
Afficher commentaires plus anciens
And how to order the output variables? [x1,x2,x3,x4] = f(); or [x4,x3,x2,x1] = f();
2 commentaires
Stephen23
le 26 Juil 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
le 26 Juil 2018
Also see
help varargout
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Argument Definitions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!