variable editor and live scripts

2 visualizzazioni (ultimi 30 giorni)
David Jones
David Jones il 8 Ago 2018
Commentato: Ameer Hamza il 9 Ago 2018
I'd like to enter data in a variable editor and then incorporate that variable in a live script.
Is this possible? I would think it would be possible to generate variable defining code from the variable editor that I could then paste into a live script, but I can't figure out how.

Risposta accettata

Ameer Hamza
Ameer Hamza il 9 Ago 2018
If you want to generate a code to recreate a variable, then try following ways
  • Using command window
matlab.io.saveVariablesToScript(fileName, variableName);
filename and variable are both char arrays.
  • Right-click the variable in the Workspace window and click Save As. Then select m-file as target file option.
After creating these files, you can use the generated code to recreate variables with same values. However, this will only work for variables of small size. You can configure the maximum size of the variable from Preferences > Workspace.

Più risposte (0)

Categorie

Scopri di più su Live Scripts and Functions 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!

Translated by