Main Content

Outputs

Specify species and parameter outputs for sensitivity analysis

Description

Outputsis a property of theSensitivityAnalysisOptionsobject.SensitivityAnalysisOptionsis a property of the configuration set object.

UseOutputsto specify the species and parameters for which you want to compute sensitivities.

The SimBiology®software calculates sensitivities with respect to the values of the parameters and the initial amounts of the species specified in theInputsproperty. When you simulate a model withSensitivityAnalysisenabled in the active configuration set object, sensitivity analysis returns the computed sensitivities of the species and parameters specified inOutputs. For a description of the output, see theSensitivityAnalysisOptionsproperty description.

Characteristics

Applies to Object:SensitivityAnalysisOptions
Data type

Species or parameter object or array of objects

Note

If a species or parameter object is determined by a repeated assignment rule, then you cannot use it as anOutputsproperty.

Data values Species or parameter object, or an array of objects. Default is[](empty array).
访问 Read/write

Examples

This example shows how to setOutputsfor sensitivity analysis.

  1. Import the radio decay model from the SimBiology demos.

    modelObj = sbmlimport('radiodecay');
  2. Retrieve the configuration set object frommodelObj.

    configsetObj = getconfigset(modelObj);
  3. Add a species to theOutputsproperty and display it. Use thesbioselectfunction to retrieve the species object from the model.

    speciesObj = sbioselect(modelObj, 'Type', 'species', 'Name', 'z'); set(configsetObj.SensitivityAnalysisOptions,'Outputs', speciesObj); get(configsetObj.SensitivityAnalysisOptions, 'Outputs')
    SimBiology Species Array Index: Compartment: Name: InitialAmount: InitialAmountUnits: 1 unnamed z 0 molecule