Save Variables declared in function to workplace.

Hello
I am defining variables in a function, but after the execution those variables are not saved in my workplace.
How can I do it without actually returnig them in output.
And the no. of variables are unkown initially , after the user give some values according to it no. of variables are declared in the function and later on all those variables are used to compute the final value and this final value is the output of the function but I need the variables declared for further computation.

2 comentarios

Stephen23
Stephen23 el 23 de Sept. de 2020
"I am defining variables in a function, but after the execution those variables are not saved in my workplace."
They are defined in the function workspace:
"How can I do it without actually returnig them in output."
The efficient, simple, and recommended way is to pass them as output arguments:
"And the no. of variables are unkown initially"
Then they should be simply stored in one container array, e.g. a cell array or a structure. Then your task is trivial.
Aryan Jain
Aryan Jain el 23 de Sept. de 2020
Thank You sir.

Iniciar sesión para comentar.

 Respuesta aceptada

Ameer Hamza
Ameer Hamza el 23 de Sept. de 2020

0 votos

It seems that you are dynamically naming the variables. This is not a recommended practice and should be avoided as much as possible: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval.
However, if you still want to do such a thing that then either use varargout: https://www.mathworks.com/help/matlab/ref/varargout.html or declare these variables as global: https://www.mathworks.com/help/matlab/ref/global.html

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 23 de Sept. de 2020

Comentada:

el 23 de Sept. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by