MATLAB_SBML_STRUCTURE_FUNCTIONS\MODEL
The functions allow users to create and work with the SBML Model structure.
Function are:
SBMLModel = Model_addCompartment(SBMLModel, SBMLCompartment)
Takes
- SBMLModel, an SBML Model structure
- SBMLCompartment, an SBML Compartment structure
Returns
- the SBML Model structure with the SBML Compartment structure added
SBMLModel = Model_addCompartmentType(SBMLModel, SBMLCompartmentType)
Takes
- SBMLModel, an SBML Model structure
- SBMLCompartmentType, an SBML CompartmentType structure
Returns
- the SBML Model structure with the SBML CompartmentType structure added
SBMLModel = Model_addConstraint(SBMLModel, SBMLConstraint)
Takes
- SBMLModel, an SBML Model structure
- SBMLConstraint, an SBML Constraint structure
Returns
- the SBML Model structure with the SBML Constraint structure added
SBMLModel = Model_addEvent(SBMLModel, SBMLEvent)
Takes
- SBMLModel, an SBML Model structure
- SBMLEvent, an SBML Event structure
Returns
- the SBML Model structure with the SBML Event structure added
SBMLModel = Model_addFunctionDefinition(SBMLModel, SBMLFunctionDefinition)
Takes
- SBMLModel, an SBML Model structure
- SBMLFunctionDefinition, an SBML FunctionDefinition structure
Returns
- the SBML Model structure with the SBML FunctionDefinition structure added
SBMLModel = Model_addInitialAssignment(SBMLModel, SBMLInitialAssignment)
Takes
- SBMLModel, an SBML Model structure
- SBMLInitialAssignment, an SBML InitialAssignment structure
Returns
- the SBML Model structure with the SBML InitialAssignment structure added
SBMLModel = Model_addParameter(SBMLModel, SBMLParameter)
Takes
- SBMLModel, an SBML Model structure
- SBMLParameter, an SBML Parameter structure
Returns
- the SBML Model structure with the SBML Parameter structure added
SBMLModel = Model_addReaction(SBMLModel, SBMLReaction)
Takes
- SBMLModel, an SBML Model structure
- SBMLReaction, an SBML Reaction structure
Returns
- the SBML Model structure with the SBML Reaction structure added
SBMLModel = Model_addRule(SBMLModel, SBMLRule)
Takes
- SBMLModel, an SBML Model structure
- SBMLRule, an SBML Rule structure
Returns
- the SBML Model structure with the SBML Rule structure added
SBMLModel = Model_addSpecies(SBMLModel, SBMLSpecies)
Takes
- SBMLModel, an SBML Model structure
- SBMLSpecies, an SBML Species structure
Returns
- the SBML Model structure with the SBML Species structure added
SBMLModel = Model_addSpeciesType(SBMLModel, SBMLSpeciesType)
Takes
- SBMLModel, an SBML Model structure
- SBMLSpeciesType, an SBML SpeciesType structure
Returns
- the SBML Model structure with the SBML SpeciesType structure added
SBMLModel = Model_addUnitDefinition(SBMLModel, SBMLUnitDefinition)
Takes
- SBMLModel, an SBML Model structure
- SBMLUnitDefinition, an SBML UnitDefinition structure
Returns
- the SBML Model structure with the SBML UnitDefinition structure added
Model = Model_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 Model 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
SBMLModel = Model_createCompartment(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Compartment structure added
SBMLModel = Model_createCompartmentType(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML CompartmentType structure added
SBMLModel = Model_createConstraint(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Constraint structure added
SBMLModel = Model_createEvent(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Event structure added
SBMLModel = Model_createFunctionDefinition(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML FunctionDefinition structure added
SBMLModel = Model_createInitialAssignment(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML InitialAssignment structure added
SBMLModel = Model_createParameter(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Parameter structure added
SBMLModel = Model_createReaction(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Reaction structure added
SBMLModel = Model_createRule(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Rule structure added
SBMLModel = Model_createSpecies(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML Species structure added
SBMLModel = Model_createSpeciesType(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML SpeciesType structure added
SBMLModel = Model_createUnitDefinition(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the SBML UnitDefinition structure added
areaUnits = Model_getAreaUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the areaUnits attribute
assignmentRule = Model_getAssignmentRuleByVariable(SBMLModel, variable)
Takes
- SBMLModel, an SBML Model structure
- variable; a string representing the variable of SBML AssignmentRule structure
Returns
- the SBML AssignmentRule structure that has this variable
compartment = Model_getCompartment(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Compartment structure
Returns
- the SBML Compartment structure at the indexed position
compartment = Model_getCompartmentById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML Compartment structure
Returns
- the SBML Compartment structure that has this id
compartmentType = Model_getCompartmentType(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML CompartmentType structure
Returns
- the SBML CompartmentType structure at the indexed position
compartmentType = Model_getCompartmentTypeById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML CompartmentType structure
Returns
- the SBML CompartmentType structure that has this id
constraint = Model_getConstraint(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Constraint structure
Returns
- the SBML Constraint structure at the indexed position
conversionFactor = Model_getConversionFactor(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the conversionFactor attribute
event = Model_getEvent(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Event structure
Returns
- the SBML Event structure at the indexed position
event = Model_getEventById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML Event structure
Returns
- the SBML Event structure that has this id
extentUnits = Model_getExtentUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the extentUnits attribute
functionDefinition = Model_getFunctionDefinition(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML FunctionDefinition structure
Returns
- the SBML FunctionDefinition structure at the indexed position
functionDefinition = Model_getFunctionDefinitionById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML FunctionDefinition structure
Returns
- the SBML FunctionDefinition structure that has this id
functionIds = Model_getFunctionIds(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the functionIds attribute
id = Model_getId(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the id attribute
initialAssignment = Model_getInitialAssignment(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML InitialAssignment structure
Returns
- the SBML InitialAssignment structure at the indexed position
initialAssignment = Model_getInitialAssignmentBySymbol(SBMLModel, symbol)
Takes
- SBMLModel, an SBML Model structure
- symbol; a string representing the symbol of SBML InitialAssignment structure
Returns
- the SBML InitialAssignment structure that has this symbol
lengthUnits = Model_getLengthUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the lengthUnits attribute
algebraicRule = Model_getListOfAlgebraicRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the algebraicRule structures
assignmentRule = Model_getListOfAssignmentRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the assignmentRule structures
listOf = Model_getListOfByTypecode(SBMLModel, typecode)
Takes
- SBMLModel, an SBML Model structure
- typecode; a string representing the typecode of SBML ListOf structure
Returns
- the SBML ListOf structure that has this typecode
compartmentType = Model_getListOfCompartmentTypes(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the compartmentType structures
compartment = Model_getListOfCompartments(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the compartment structures
constraint = Model_getListOfConstraints(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the constraint structures
event = Model_getListOfEvents(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the event structures
functionDefinition = Model_getListOfFunctionDefinitions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the functionDefinition structures
initialAssignment = Model_getListOfInitialAssignments(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the initialAssignment structures
parameter = Model_getListOfParameters(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the parameter structures
rateRule = Model_getListOfRateRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the rateRule structures
reaction = Model_getListOfReactions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the reaction structures
rule = Model_getListOfRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the rule structures
species = Model_getListOfSpecies(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the species structures
speciesType = Model_getListOfSpeciesTypes(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the speciesType structures
species = Model_getListOfSpeciess(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the species structures
unitDefinition = Model_getListOfUnitDefinitions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- an array of the unitDefinition structures
metaid = Model_getMetaid(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the metaid attribute
name = Model_getName(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the name attribute
num = Model_getNumAlgebraicRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML AlgebraicRule structures present in the Model
num = Model_getNumAssignmentRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML AssignmentRule structures present in the Model
num = Model_getNumCompartmentTypes(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML CompartmentType structures present in the Model
num = Model_getNumCompartments(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Compartment structures present in the Model
num = Model_getNumConstraints(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Constraint structures present in the Model
num = Model_getNumEvents(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Event structures present in the Model
num = Model_getNumFunctionDefinitions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML FunctionDefinition structures present in the Model
num = Model_getNumInitialAssignments(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML InitialAssignment structures present in the Model
num = Model_getNumParameters(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Parameter structures present in the Model
num = Model_getNumRateRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML RateRule structures present in the Model
num = Model_getNumReactions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Reaction structures present in the Model
num = Model_getNumRules(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Rule structures present in the Model
num = Model_getNumSpecies(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Species structures present in the Model
num = Model_getNumSpeciesTypes(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML SpeciesType structures present in the Model
num = Model_getNumSpeciess(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML Species structures present in the Model
num = Model_getNumUnitDefinitions(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the number of SBML UnitDefinition structures present in the Model
parameter = Model_getParameter(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Parameter structure
Returns
- the SBML Parameter structure at the indexed position
parameter = Model_getParameterById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML Parameter structure
Returns
- the SBML Parameter structure that has this id
rateRule = Model_getRateRuleByVariable(SBMLModel, variable)
Takes
- SBMLModel, an SBML Model structure
- variable; a string representing the variable of SBML RateRule structure
Returns
- the SBML RateRule structure that has this variable
reaction = Model_getReaction(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Reaction structure
Returns
- the SBML Reaction structure at the indexed position
reaction = Model_getReactionById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML Reaction structure
Returns
- the SBML Reaction structure that has this id
rule = Model_getRule(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Rule structure
Returns
- the SBML Rule structure at the indexed position
sBMLlevel = ModelgetSBML_level(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the sBML_level attribute
sBMLversion = ModelgetSBML_version(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the sBML_version attribute
sboTerm = Model_getSBOTerm(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the sboTerm attribute
species = Model_getSpecies(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML Species structure
Returns
- the SBML Species structure at the indexed position
species = Model_getSpeciesById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML Species structure
Returns
- the SBML Species structure that has this id
speciesType = Model_getSpeciesType(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML SpeciesType structure
Returns
- the SBML SpeciesType structure at the indexed position
speciesType = Model_getSpeciesTypeById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML SpeciesType structure
Returns
- the SBML SpeciesType structure that has this id
substanceUnits = Model_getSubstanceUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the substanceUnits attribute
timeUnits = Model_getTimeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the timeUnits attribute
unitDefinition = Model_getUnitDefinition(SBMLModel, index)
Takes
- SBMLModel, an SBML Model structure
- index, an integer representing the index of SBML UnitDefinition structure
Returns
- the SBML UnitDefinition structure at the indexed position
unitDefinition = Model_getUnitDefinitionById(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id of SBML UnitDefinition structure
Returns
- the SBML UnitDefinition structure that has this id
volumeUnits = Model_getVolumeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the value of the volumeUnits attribute
value = Model_isSetAreaUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the areaUnits attribute is set
- 0 otherwise
value = Model_isSetConversionFactor(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the conversionFactor attribute is set
- 0 otherwise
value = Model_isSetExtentUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the extentUnits attribute is set
- 0 otherwise
value = Model_isSetId(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the id attribute is set
- 0 otherwise
value = Model_isSetLengthUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the lengthUnits attribute is set
- 0 otherwise
value = Model_isSetMetaid(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the metaid attribute is set
- 0 otherwise
value = Model_isSetName(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the name attribute is set
- 0 otherwise
value = ModelisSetSBMLlevel(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the sBML_level attribute is set
- 0 otherwise
value = ModelisSetSBMLversion(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the sBML_version attribute is set
- 0 otherwise
value = Model_isSetSBOTerm(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the sboTerm attribute is set
- 0 otherwise
value = Model_isSetSubstanceUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the substanceUnits attribute is set
- 0 otherwise
value = Model_isSetTimeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the timeUnits attribute is set
- 0 otherwise
value = Model_isSetVolumeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- value =
- 1 if the volumeUnits attribute is set
- 0 otherwise
SBMLModel = Model_setAreaUnits(SBMLModel, areaUnits)
Takes
- SBMLModel, an SBML Model structure
- areaUnits; a string representing the areaUnits to be set
Returns
- the SBML Model structure with the new value for the areaUnits attribute
SBMLModel = Model_setConversionFactor(SBMLModel, conversionFactor)
Takes
- SBMLModel, an SBML Model structure
- conversionFactor; a string representing the conversionFactor to be set
Returns
- the SBML Model structure with the new value for the conversionFactor attribute
SBMLModel = Model_setExtentUnits(SBMLModel, extentUnits)
Takes
- SBMLModel, an SBML Model structure
- extentUnits; a string representing the extentUnits to be set
Returns
- the SBML Model structure with the new value for the extentUnits attribute
SBMLModel = Model_setId(SBMLModel, id)
Takes
- SBMLModel, an SBML Model structure
- id; a string representing the id to be set
Returns
- the SBML Model structure with the new value for the id attribute
SBMLModel = Model_setLengthUnits(SBMLModel, lengthUnits)
Takes
- SBMLModel, an SBML Model structure
- lengthUnits; a string representing the lengthUnits to be set
Returns
- the SBML Model structure with the new value for the lengthUnits attribute
SBMLModel = Model_setMetaid(SBMLModel, metaid)
Takes
- SBMLModel, an SBML Model structure
- metaid; a string representing the metaid to be set
Returns
- the SBML Model structure with the new value for the metaid attribute
SBMLModel = Model_setName(SBMLModel, name)
Takes
- SBMLModel, an SBML Model structure
- name; a string representing the name to be set
Returns
- the SBML Model structure with the new value for the name attribute
SBMLModel = Model_setSBOTerm(SBMLModel, sboTerm)
Takes
- SBMLModel, an SBML Model structure
- sboTerm, an integer representing the sboTerm to be set
Returns
- the SBML Model structure with the new value for the sboTerm attribute
SBMLModel = Model_setSubstanceUnits(SBMLModel, substanceUnits)
Takes
- SBMLModel, an SBML Model structure
- substanceUnits; a string representing the substanceUnits to be set
Returns
- the SBML Model structure with the new value for the substanceUnits attribute
SBMLModel = Model_setTimeUnits(SBMLModel, timeUnits)
Takes
- SBMLModel, an SBML Model structure
- timeUnits; a string representing the timeUnits to be set
Returns
- the SBML Model structure with the new value for the timeUnits attribute
SBMLModel = Model_setVolumeUnits(SBMLModel, volumeUnits)
Takes
- SBMLModel, an SBML Model structure
- volumeUnits; a string representing the volumeUnits to be set
Returns
- the SBML Model structure with the new value for the volumeUnits attribute
SBMLModel = Model_unsetAreaUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the areaUnits attribute unset
SBMLModel = Model_unsetConversionFactor(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the conversionFactor attribute unset
SBMLModel = Model_unsetExtentUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the extentUnits attribute unset
SBMLModel = Model_unsetId(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the id attribute unset
SBMLModel = Model_unsetLengthUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the lengthUnits attribute unset
SBMLModel = Model_unsetMetaid(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the metaid attribute unset
SBMLModel = Model_unsetName(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the name attribute unset
SBMLModel = Model_unsetSBOTerm(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the sboTerm attribute unset
SBMLModel = Model_unsetSubstanceUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the substanceUnits attribute unset
SBMLModel = Model_unsetTimeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the timeUnits attribute unset
SBMLModel = Model_unsetVolumeUnits(SBMLModel)
Takes
- SBMLModel, an SBML Model structure
Returns
- the SBML Model structure with the volumeUnits attribute unset