How can i erase the word "out." at the beginning of the variable name in block "to workspace"
82 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
David Sebastián Puma Benavides
il 12 Set 2020
Commentato: David Sebastián Puma Benavides
il 12 Set 2020
How can I change the variable name in the block "To workspace, when I change the name, it maintain the word "out.", and it confuse when I call the variable and run the project on the script.
Help me.
0 Commenti
Risposta accettata
stozaki
il 12 Set 2020
Hello David,
The default configuration settings are to save to a single Simulink.SimulationOutput object. The script to cancel the setting is as follows. Please execute with the model open.
myconfig = getActiveConfigSet(bdroot(gcs));
set_param(myconfig,'ReturnWorkspaceOutputs','off');
This can also be set via the settings dialog.
Regards,
stozaki
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Sources in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!