Notes

HTML text describing SimBiology object

Description

Use the Notes property of an object to store comments about the object. You can include HTML tagging in the notes to render formatted text in the SimBiology desktop.

Characteristics

Applies toObjects: compartment, kinetic law, model, parameter, reaction, RepeatDose, rule, ScheduleDose, species, unit, or unit prefix
Data typeCharacter vector
Data valuesAny character vector
AccessRead/write

Examples

  1. Create a model object.

    modelObj = sbiomodel ('my_model');
  2. Write notes for the model object.

    set (modelObj, 'notes', '09/01/05 experimental data')
  3. Verify the assignment.

    get (modelObj, 'notes')
    MATLAB® returns:
    ans =
    
    09/01/05 experimental data