StatesToLog - Specify species data recorded

Description

The StatesToLog property indicates the species data to log during a simulation. This is the data returned in x during execution of (t,x) = sbiosimulate(modelObj). By default all species are logged.

Characteristics

Applies toObject: RunTimeOptions
Data typeObject or vector of objects
Data valuesSpecies objects to log. Default is All.
AccessRead/Write

Example

Illustrates how to assign species to StatesToLog.

  1. Create a model object by importing the file oscillator.xml.

    modelObj  = sbmlimport('oscillator');
  2. Retrieve the first and second species in the modelObj.

    speciesObj1 = modelObj.Species(1);
    speciesObj2 = modelObj.Species(2);
  3. Retrieve the configsetObj of modelObj.

    configsetObj = getconfigset(modelObj);
  4. 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')

  


 © 1984-2008- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS