Save Variables declared in function to workplace.
Mostrar comentarios más antiguos
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
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
el 23 de Sept. de 2020
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Workspace Variables and MAT Files en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!