フィルターのクリア

how to control simscape data logging properties from command line

2 ビュー (過去 30 日間)
Jeff Hoefler
Jeff Hoefler 2015 年 12 月 16 日
回答済み: Vidya Viswanathan 2015 年 12 月 22 日
Is there a way, from the command line, to set the values of the various configuration parameters for simscape like you can with the solver? I am able to do set_param(modelName, 'solver','ode14x') but can't figure out how to set "Log simulation Data" to "All", set the "workspace variable name" to some new name (other than simlog) and turn off the "Limit data points" checkbox

回答 (1 件)

Vidya Viswanathan
Vidya Viswanathan 2015 年 12 月 22 日
It is possible to control Simscape Data Logging properties from command line in a manner similar to setting other options in Configuration Parameters.
In order to set "Log simulation data:" to "all", use the command:
set_param(modelName,'SimscapeLogType','all')
To change the name of the Workspace variable, use
set_param(modelName,'SimscapeLogName','varName')
To uncheck "Limit data points" option, use
set_param(modelName,'SimscapeLogLimitData','off')
Note that the Command-Line Information of any option can be obtained by Right-clicking the particular option and selecting "What's This?".

カテゴリ

Help Center および File ExchangeData Logging についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by