HTML text describing SimBiology object
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.
Applies to | Objects: compartment, kinetic law, model, parameter, reaction, RepeatDose, rule, ScheduleDose, species, unit, or unit prefix |
Data type | Character vector |
Data values | Any character vector |
Access | Read/write |
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.
get (modelObj, 'notes')
ans = 09/01/05 experimental data