Interface Functions
Missing docstring for isvariable
. Check Documenter's build log for details.
Missing docstring for variableindex
. Check Documenter's build log for details.
Missing docstring for isparameter
. Check Documenter's build log for details.
Missing docstring for parameterindex
. Check Documenter's build log for details.
Missing docstring for isindependent_variable
. Check Documenter's build log for details.
Missing docstring for isobserved
. Check Documenter's build log for details.
SymbolicIndexingInterface.observed
— Functionobserved(sys, sym, [symbolic_states])
Return the observed function of the given sym
in sys
. The returned function should have the signature (u, p) -> [values...]
where u
and p
is the current state and parameter vector. If istimedependent(sys) == true
, the function should accept the current time t
as its third parameter. If has_static_variable(sys) == false
then observed
must accept a third parameter symbolic_states
indicating the order of symbolic variables in u
.
See also: is_time_dependent
, has_static_variable
Missing docstring for istimedependent
. Check Documenter's build log for details.
SymbolicIndexingInterface.constant_structure
— Functionconstant_structure(sys)
Check if sys
has a constant structure. Constant structure systems do not change the number of variables or parameters over time.