Return multiple results from a function in one variable

24 visualizaciones (últimos 30 días)
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)

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 30 de Sept. de 2020
Editada: MathWorks Support Team el 30 de Sept. de 2020
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:

Más respuestas (1)

Stephen23
Stephen23 el 30 de Sept. de 2020
Editada: Stephen23 el 30 de Sept. de 2020
"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

Categorías

Más información sobre Structures en Help Center y File Exchange.

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by