Short question: Functions with multiple outputs

조회 수: 17 (최근 30일)
MiauMiau
MiauMiau 2013년 1월 11일
Hi
I have seen two formalism for functions with more then one output:
function [output1, output2] = functionname(input)
or the same with the outputs not being separated by a coma:
function [output1 output2] = functionname(input)
what's the difference?
Thanks

채택된 답변

EristoffAbhi
EristoffAbhi 2013년 1월 11일
There is no Difference, as both the syntax are correct.First nomenclature is preferred as it is easy to understand. And if you have notice that while creating a vector e.g. a=[1 2 3]
a =
1 2 3
>> a=[1 ,2, 3]
a =
1 2 3
both are same. Similarly in the above function output syntax, the return value of your function is getting store in output1, output2. and so both the syntax are same and have same impact on your code.

추가 답변 (2개)

José-Luis
José-Luis 2013년 1월 11일
None

Rick Rosson
Rick Rosson 2013년 1월 11일
No difference, but first approach is preferred.

카테고리

Help CenterFile Exchange에서 Embedded Coder에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by