| Contents | Index |
The StatesToLog property indicates the species or parameter data to log during a simulation. This is the data returned in x during execution of [t,x] = sbiosimulate(modelObj). By default, all species and nonconstant parameters are logged.
| Applies to | Object: RuntimeOptions |
| Data type | Object or vector of objects |
| Data values | Species objects or parameter objects. Default is All, which means all species objects, and all parameter objects whose ConstantValue = false. |
| Access | Read/write |
This example shows how to assign species to StatesToLog.
Create a model object by importing the file oscillator.xml.
modelObj = sbmlimport('oscillator');Retrieve the first and second species in modelObj.
speciesObj1 = modelObj.Species(1); speciesObj2 = modelObj.Species(2);
Retrieve the configsetObj of modelObj.
configsetObj = getconfigset(modelObj);
Set the StatesToLog to record three species: two using the retrieved species objects and one using indexing and view the species in StatesToLog.
set (configsetObj.RuntimeOptions, 'StatesToLog', [speciesObj1, speciesObj2, modelObj.Species(3)]); get(configsetObj.RuntimeOptions, 'StatesToLog')

See how to analyze, visualize, and model biological data and systems using MathWorks products.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |