Save Variables declared in function to workplace.

조회 수: 2 (최근 30일)
Aryan Jain
Aryan Jain 2020년 9월 23일
댓글: Aryan Jain 2020년 9월 23일
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
Stephen23
Stephen23 2020년 9월 23일
"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 2020년 9월 23일
Thank You sir.

댓글을 달려면 로그인하십시오.

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 9월 23일
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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by