MATLAB_SBML_STRUCTURE_FUNCTIONS\UNIT
The functions allow users to create and work with the SBML Unit structure.
Function are:
Unit = Unit_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 Unit 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
exponent = Unit_getExponent(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the exponent attribute
kind = Unit_getKind(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the kind attribute
metaid = Unit_getMetaid(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the metaid attribute
multiplier = Unit_getMultiplier(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the multiplier attribute
offset = Unit_getOffset(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the offset attribute
sboTerm = Unit_getSBOTerm(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the sboTerm attribute
scale = Unit_getScale(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the value of the scale attribute
value = Unit_isSetExponent(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the exponent attribute is set
- 0 otherwise
value = Unit_isSetKind(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the kind attribute is set
- 0 otherwise
value = Unit_isSetMetaid(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the metaid attribute is set
- 0 otherwise
value = Unit_isSetMultiplier(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the multiplier attribute is set
- 0 otherwise
value = Unit_isSetOffset(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the offset attribute is set
- 0 otherwise
value = Unit_isSetSBOTerm(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the sboTerm attribute is set
- 0 otherwise
value = Unit_isSetScale(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- value =
- 1 if the scale attribute is set
- 0 otherwise
SBMLUnit = Unit_setExponent(SBMLUnit, exponent)
Takes
- SBMLUnit, an SBML Unit structure
- exponent; number representing the value of exponent to be set
Returns
- the SBML Unit structure with the new value for the exponent attribute
SBMLUnit = Unit_setKind(SBMLUnit, kind)
Takes
- SBMLUnit, an SBML Unit structure
- kind; a string representing the kind to be set
Returns
- the SBML Unit structure with the new value for the kind attribute
SBMLUnit = Unit_setMetaid(SBMLUnit, metaid)
Takes
- SBMLUnit, an SBML Unit structure
- metaid; a string representing the metaid to be set
Returns
- the SBML Unit structure with the new value for the metaid attribute
SBMLUnit = Unit_setMultiplier(SBMLUnit, multiplier)
Takes
- SBMLUnit, an SBML Unit structure
- multiplier; number representing the value of multiplier to be set
Returns
- the SBML Unit structure with the new value for the multiplier attribute
SBMLUnit = Unit_setOffset(SBMLUnit, offset)
Takes
- SBMLUnit, an SBML Unit structure
- offset, an integer representing the offset to be set
Returns
- the SBML Unit structure with the new value for the offset attribute
SBMLUnit = Unit_setSBOTerm(SBMLUnit, sboTerm)
Takes
- SBMLUnit, an SBML Unit structure
- sboTerm, an integer representing the sboTerm to be set
Returns
- the SBML Unit structure with the new value for the sboTerm attribute
SBMLUnit = Unit_setScale(SBMLUnit, scale)
Takes
- SBMLUnit, an SBML Unit structure
- scale; number representing the value of scale to be set
Returns
- the SBML Unit structure with the new value for the scale attribute
SBMLUnit = Unit_unsetExponent(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the exponent attribute unset
SBMLUnit = Unit_unsetKind(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the kind attribute unset
SBMLUnit = Unit_unsetMetaid(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the metaid attribute unset
SBMLUnit = Unit_unsetMultiplier(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the multiplier attribute unset
SBMLUnit = Unit_unsetOffset(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the offset attribute unset
SBMLUnit = Unit_unsetSBOTerm(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the sboTerm attribute unset
SBMLUnit = Unit_unsetScale(SBMLUnit)
Takes
- SBMLUnit, an SBML Unit structure
Returns
- the SBML Unit structure with the scale attribute unset