UnivariateTaylorSeriesODESolver(Coef, UTS)ΒΆ
utsode.spad line 1 [edit on github]
UTS: UnivariateTaylorSeriesCategory Coef
This package provides Taylor series solutions to regular linear or non-linear ordinary differential equations of arbitrary order.
- fixedPointExquo: (UTS, UTS) -> UTS
fixedPointExquo(f, g)
computes the exact quotient off
andg
using a fixed point computation.
- mpsode: (List Coef, List(List UTS -> UTS)) -> List UTS
mpsode(r, f)
solves the system of differential equationsdy[i]/dx =f[i] [x, y[1], y[2], ..., y[n]]
,y[i](a) = r[i]
fori
in 1..n
.
- ode1: (UTS -> UTS, Coef) -> UTS
ode1(f, c)
is the solution toy' = f(y)
such thaty(a) = c
.
- ode2: ((UTS, UTS) -> UTS, Coef, Coef) -> UTS
ode2(f, c0, c1)
is the solution toy'' = f(y, y')
such thaty(a) = c0
andy'(a) = c1
.
- ode: (List UTS -> UTS, List Coef) -> UTS
ode(f, cl)
is the solution toy<n>=f(y, y', .., y<n-1>)
such thaty<i>(a) = cl.(i+1)
fori
in 0..(n
- 1).
- stFunc1: (UTS -> UTS) -> Stream Coef -> Stream Coef
stFunc1(f)
is a local function exported due to compiler problem. This function is of no interest to the top-level user.