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

  1. level, an integer representing an SBML level (optional)
  2. version, an integer representing an SBML version (optional)

Returns

  1. 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

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the exponent attribute

kind = Unit_getKind(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the kind attribute

metaid = Unit_getMetaid(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the metaid attribute

multiplier = Unit_getMultiplier(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the multiplier attribute

offset = Unit_getOffset(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the offset attribute

sboTerm = Unit_getSBOTerm(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the sboTerm attribute

scale = Unit_getScale(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the value of the scale attribute

value = Unit_isSetExponent(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetKind(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetMetaid(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetMultiplier(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetOffset(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetSBOTerm(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

value = Unit_isSetScale(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. value =

SBMLUnit = Unit_setExponent(SBMLUnit, exponent)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. exponent; number representing the value of exponent to be set

Returns

  1. the SBML Unit structure with the new value for the exponent attribute

SBMLUnit = Unit_setKind(SBMLUnit, kind)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. kind; a string representing the kind to be set

Returns

  1. the SBML Unit structure with the new value for the kind attribute

SBMLUnit = Unit_setMetaid(SBMLUnit, metaid)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. metaid; a string representing the metaid to be set

Returns

  1. the SBML Unit structure with the new value for the metaid attribute

SBMLUnit = Unit_setMultiplier(SBMLUnit, multiplier)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. multiplier; number representing the value of multiplier to be set

Returns

  1. the SBML Unit structure with the new value for the multiplier attribute

SBMLUnit = Unit_setOffset(SBMLUnit, offset)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. offset, an integer representing the offset to be set

Returns

  1. the SBML Unit structure with the new value for the offset attribute

SBMLUnit = Unit_setSBOTerm(SBMLUnit, sboTerm)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. sboTerm, an integer representing the sboTerm to be set

Returns

  1. the SBML Unit structure with the new value for the sboTerm attribute

SBMLUnit = Unit_setScale(SBMLUnit, scale)

Takes

  1. SBMLUnit, an SBML Unit structure
  2. scale; number representing the value of scale to be set

Returns

  1. the SBML Unit structure with the new value for the scale attribute

SBMLUnit = Unit_unsetExponent(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the exponent attribute unset

SBMLUnit = Unit_unsetKind(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the kind attribute unset

SBMLUnit = Unit_unsetMetaid(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the metaid attribute unset

SBMLUnit = Unit_unsetMultiplier(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the multiplier attribute unset

SBMLUnit = Unit_unsetOffset(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the offset attribute unset

SBMLUnit = Unit_unsetSBOTerm(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the sboTerm attribute unset

SBMLUnit = Unit_unsetScale(SBMLUnit)

Takes

  1. SBMLUnit, an SBML Unit structure

Returns

  1. the SBML Unit structure with the scale attribute unset