Filter löschen
Filter löschen

Return values of function vs. assignin

24 Ansichten (letzte 30 Tage)
Luca Tarasi
Luca Tarasi am 17 Aug. 2019
Beantwortet: Nikhil Sonavane am 20 Aug. 2019
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
Stephen23
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
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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Nikhil Sonavane
Nikhil Sonavane am 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-

Weitere Antworten (0)

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by