Return values of function vs. assignin
Ältere Kommentare anzeigen
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 Kommentare
Bruno Luong
am 17 Aug. 2019
Bad design
Luca Tarasi
am 17 Aug. 2019
Stephen23
am 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
am 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.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Simulink Environment Customization finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!