Main Content

exportParamSet

Write ParameterSet object data to parameter set file

Since R2021a

    Description

    example

    exportParamSet(target_object,parameter_set,app_name) writes the parameter information from the ParameterSet object to the corresponding parameter file on the target computer. If the app_name is omitted, the currently loaded real-time application is used.

    Examples

    collapse all

    After tuning the parameters, export the modified parameter set to the target computer and load the parameters into the real-time application.

    exportParamSet(tg,myParamSet);
    loadParamSet(tg,myParamSet.filename);

    Input Arguments

    collapse all

    Provides access to methods that manipulate the target computer properties.

    Example: tg

    The ParameterSet object that was created from the real-time application in the importParamSet command.

    Example: myParamSet

    Provides name of real-time application MLDATX file that you built from the model.

    Example: 'slrt_ex_osc'

    Version History

    Introduced in R2021a