Return multiple results from a function in one variable

조회 수: 23 (최근 30일)
MathWorks Support Team
MathWorks Support Team 2017년 8월 11일
편집: Stephen23 2020년 9월 30일
I have a function called "ols2" that calculates 12 different values. Is there some way I can call the function program without listing all 12 of the return values? In other words, I want to avoid having to say
[p1,p2,p3 p4,p5,p6,p7,p8,p9,p19,p11,p12] = ols2(x,y)

채택된 답변

MathWorks Support Team
MathWorks Support Team 2020년 9월 30일
편집: MathWorks Support Team 2020년 9월 30일
One way to return multiple variables from a function is to group them in a struct. Here is an example function:
function res = foo()
res.x=1;res.y = 2;
end
You can then call the function by writing
>> my_res = foo()
and access the variables using a dot, e.g., "my_res.x". For more information about 'struct' please see our documentation page below:

추가 답변 (1개)

Stephen23
Stephen23 2020년 9월 30일
편집: Stephen23 2020년 9월 30일
"I have a function called "ols2" that calculates 12 different values. Is there some way I can call the function program without listing all 12 of the return values?"
The simplest and most efficient solution by far is to just use one vector:
function vec = ols2(..)
vec = [1,2,..];
end

카테고리

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

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by