Main Content
Notes
HTML text describing SimBiology object
Description
Use the Notes
property of an object to store comments about the
object.
Characteristics
Applies to | Objects: compartment, kinetic law, model, observable, parameter, reaction, RepeatDose, rule, ScheduleDose, species, unit, or unit prefix |
Data type | Character vector |
Data values | Any character vector |
Access | Read/write |
Examples
Create a model object.
modelObj = sbiomodel ('my_model');
Write notes for the model object.
set (modelObj, 'notes', '09/01/05 experimental data')
Verify the assignment.
MATLAB® returns:get (modelObj, 'notes')
ans = 09/01/05 experimental data