JetBundleOperationsCategoryΒΆ
jet.spad line 37 [edit on github]
This category defines common operations provided by various jet bundles.
- getNotation: () -> Symbol
getNotation()shows the currently used notation.
- numDepVar: () -> PositiveInteger
numDepVarreturns the number of dependent variables.
- numIndVar: () -> PositiveInteger
numIndVarreturns the number of independent variables.
- P: (PositiveInteger, List NonNegativeInteger) -> %
P(i, ind)generates the derivative of thei-th dependent variablewrtthe indexind. Whetherindis interpreted as multi-index or as repeated index depends on the chosen notation.
- P: (PositiveInteger, NonNegativeInteger) -> %
P(i, j)generates thej-th derivative of thei-th independent variablewrtthe only independent variable.
- P: List NonNegativeInteger -> %
P(ind)generates the derivative of the only dependent variablewrtthe indexind.
- P: NonNegativeInteger -> %
P(i)generates thei-th derivative of the only dependent variablewrtthe only independent variable.
- setNotation: Symbol -> Symbol
setNotation(s)chooses the notation used for derivatives. Returns the old value.
- U: () -> %
U()generates the only dependent variable.
- U: PositiveInteger -> %
U(i)generates thei-th dependent variable.
- X: () -> %
X()generates the only independent variable.
- X: PositiveInteger -> %
X(i)generates thei-th independent variable.