ODEIntegration(R, F)ΒΆ
oderf.spad line 599 [edit on github]
R: Join(Comparable, PolynomialFactorizationExplicit, RetractableTo Integer, LinearlyExplicitOver Integer, CharacteristicZero)
F: Join(AlgebraicallyClosedFunctionSpace R, TranscendentalFunctionCategory, PrimitiveFunctionCategory)
ODEIntegration provides an interface to the integrator. This package is intended for use by the differential equations solver but not at top-level.
- diff: Symbol -> F -> F
diff(x)
returns the derivation with respect tox
.
- expint: (F, Symbol) -> F
expint(f, x)
returns e^{the integral off
with respect tox
}.
- int: (F, Symbol) -> F
int(f, x)
returns the integral off
with respect tox
.