Return values of function vs. assignin

1 view (last 30 days)
Hi,
I'm writing a MATLAB function that sets some variables for a Simulink simulation of a planar robot.
A bunch of values are to be set in the workspace, around 20. However, about half of them should be of no interest for the end user, because they are internal variables of the simulation (variables for Simulink switches, for handling errors in the simulation, etc.). Also, they have to be saved in the workspace with the name that's used in the Simulink model.
Because of this, I was thinking about storing these values not by return values of the function, but by using the assignin function. This way, they could be stored with the right names in the workspace and the end user could ignore them.
Do you think it would be appropriate or just confusing and smell of bad design?
Thank you.
LT
  4 Comments
Stephen23
Stephen23 on 17 Aug 2019
Bad design.
In similar situations I have put all those extra bit-and-pieces into one structure, and passed that as an (undocumented) output argument (right after all the documented ones).
John D'Errico
John D'Errico on 17 Aug 2019
I do agree with the comments by others. If you have many parameters to return, just stuff them into a struct. The idea of using assignin for the purpose is a terrible design choice, IMHO.

Sign in to comment.

Accepted Answer

Nikhil Sonavane
Nikhil Sonavane on 20 Aug 2019
I understand that you wish to set some parameters in the workspace before you execute your model but don’t wish the end user to do it every time. I suggest you use Callbacks instead of a function. You may refer to the following documentation for more information about callbacks-

More Answers (0)

Categories

Find more on Simulink Functions in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!