MATLAB_SBML_STRUCTURE_FUNCTIONS\DELAY
The functions allow users to create and work with the SBML Delay structure.
Function are:
Delay = Delay_create(level(optional), version(optional) )
Takes
- level, an integer representing an SBML level (optional)
- version, an integer representing an SBML version (optional)
Returns
- a MATLAB_SBML Delay structure of the appropriate level and version
NOTE: the optional level and version preserve backwards compatibility
a missing version argument will default to L1V2; L2V4 or L3V1
missing both arguments will default to L3V1
math = Delay_getMath(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the value of the math attribute
metaid = Delay_getMetaid(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the value of the metaid attribute
sboTerm = Delay_getSBOTerm(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the value of the sboTerm attribute
value = Delay_isSetMath(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- value =
- 1 if the math attribute is set
- 0 otherwise
value = Delay_isSetMetaid(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- value =
- 1 if the metaid attribute is set
- 0 otherwise
value = Delay_isSetSBOTerm(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- value =
- 1 if the sboTerm attribute is set
- 0 otherwise
SBMLDelay = Delay_setMath(SBMLDelay, math)
Takes
- SBMLDelay, an SBML Delay structure
- math; string representing the math expression math to be set
Returns
- the SBML Delay structure with the new value for the math attribute
SBMLDelay = Delay_setMetaid(SBMLDelay, metaid)
Takes
- SBMLDelay, an SBML Delay structure
- metaid; a string representing the metaid to be set
Returns
- the SBML Delay structure with the new value for the metaid attribute
SBMLDelay = Delay_setSBOTerm(SBMLDelay, sboTerm)
Takes
- SBMLDelay, an SBML Delay structure
- sboTerm, an integer representing the sboTerm to be set
Returns
- the SBML Delay structure with the new value for the sboTerm attribute
SBMLDelay = Delay_unsetMath(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the SBML Delay structure with the math attribute unset
SBMLDelay = Delay_unsetMetaid(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the SBML Delay structure with the metaid attribute unset
SBMLDelay = Delay_unsetSBOTerm(SBMLDelay)
Takes
- SBMLDelay, an SBML Delay structure
Returns
- the SBML Delay structure with the sboTerm attribute unset