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

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

Returns

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

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the value of the math attribute

metaid = Delay_getMetaid(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the value of the metaid attribute

sboTerm = Delay_getSBOTerm(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the value of the sboTerm attribute

value = Delay_isSetMath(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. value =

value = Delay_isSetMetaid(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. value =

value = Delay_isSetSBOTerm(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. value =

SBMLDelay = Delay_setMath(SBMLDelay, math)

Takes

  1. SBMLDelay, an SBML Delay structure
  2. math; string representing the math expression math to be set

Returns

  1. the SBML Delay structure with the new value for the math attribute

SBMLDelay = Delay_setMetaid(SBMLDelay, metaid)

Takes

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

Returns

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

SBMLDelay = Delay_setSBOTerm(SBMLDelay, sboTerm)

Takes

  1. SBMLDelay, an SBML Delay structure
  2. sboTerm, an integer representing the sboTerm to be set

Returns

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

SBMLDelay = Delay_unsetMath(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the SBML Delay structure with the math attribute unset

SBMLDelay = Delay_unsetMetaid(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the SBML Delay structure with the metaid attribute unset

SBMLDelay = Delay_unsetSBOTerm(SBMLDelay)

Takes

  1. SBMLDelay, an SBML Delay structure

Returns

  1. the SBML Delay structure with the sboTerm attribute unset