| Contents | Index |
addcontent(variantObj, contents)
addcontent(variantObj1, variantObj2)
| variantObj | Specify the variant object to which you want to append data. The Content property is modified to add the new data. |
| contents | Specify the data you want to add to a variant object. Contents can either be a cell array or an array of cell arrays. A valid cell array should have the form {'Type', 'Name', 'PropertyName', PropertyValue}, where PropertyValue is the new value to be applied for the PropertyName. Valid Type, Name, and PropertyName values are as follows. |
| 'Type' | 'Name' | 'PropertyName' |
|---|---|---|
| 'species' | Name of the species. If there are multiple species in the model with the same name, specify the species as [compartmentName.speciesName], where compartmentName is the name of the compartment containing the species. | 'InitialAmount' |
| 'parameter' | If the parameter scope is a model, specify the parameter name. If the parameter scope is a kinetic law, specify [reactionName.parameterName]. | 'Value' |
| 'compartment' | Name of the compartment. | 'Capacity' |
addcontent(variantObj, contents) adds the data stored in the variable contents to the variant object (variantObj).
addcontent(variantObj1, variantObj2) appends
the data in the Content property
of the variant object variantObj2 to the Content property
of variant object variantObj1.
Note Remember to use the addcontent method instead of using the set method on the Content property because the set method replaces the data in the Content property, whereas addcontent appends the data. |
Create a model containing one species.
modelObj = sbiomodel('mymodel');
compObj = addcompartment(modelObj, 'comp1');
speciesObj = addspecies(compObj, 'A');Add a variant object that varies the InitialAmount property of a species named A.
variantObj = addvariant(modelObj, 'v1');
addcontent(variantObj, {'species', 'A', 'InitialAmount', 5});addvariant, rmcontent, sbiovariant

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 |