How to use set_param correctly in a function
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
A
am 1 Sep. 2021
Kommentiert: Walter Roberson
am 6 Sep. 2021
When I execute the following program in a function, each process can be performed, but the data in the To workspace is not reflected in the base workspace.
What is the difference between this and script execution?
Also, is there a way to solve this problem?
set_param('vdp','SimulationCommand','pause')
set_param('vdp','SimulationCommand','continue')
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 1 Sep. 2021
The To Workspace block typically writes data to the MATLAB® base workspace. For a sim command in a MATLAB function, the To Workspace block sends data to the workspace of the calling function, not to the MATLAB base workspace. To send the logged data to the base workspace, use an assignin command in the function.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Programmatic Model Editing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!