Main Content

年代ensitivityAnalysis

Enable or disable sensitivity analysis

Description

年代ensitivityAnalysisis a property of the年代olverOptionsproperty, which is a property of aconfigsetobject. This property lets you compute the time-dependent sensitivities of all the species states defined by the年代tatesToLogproperty with respect to theInputsthat you specify in the年代ensitivityAnalysisOptionsproperty of the configuration set object.

年代imBiology always uses the SUNDIALS solver to perform sensitivity analysis on a model, regardless of what you have selected as the年代olverTypein the configuration set.

Note

Models containing the following active components do not support sensitivity analysis:

  • Nonconstant compartments

  • Algebraic rules

  • Events

For more information on setting up sensitivity analysis, see年代ensitivityAnalysisOptions. For a description of sensitivity analysis calculations, see年代ensitivity Analysis in SimBiology.

Characteristics

Applies to Object:年代olverOptions
Data type logical
Data values 1,0,true,false. Default isfalse.
Access Read/write

Examples

This example shows how to enable年代ensitivityAnalysis.

  1. Retrieve theconfigsetobject from themodelObj.

    modelObj = sbiomodel('cell'); configsetObj = getconfigset(modelObj);
  2. Enable年代ensitivityAnalysis.

    set(configsetObj.SolverOptions,'SensitivityAnalysis', true); get(configsetObj.SolverOptions,'SensitivityAnalysis') ans = on