Defines a first-order linear scalar ODE: y' = a(t)y + b(t).
Coefficient a(t) or constant a.
Coefficient b(t) or constant b.
const ode = Chalkboard.diff.linear1(-2, 1);const derivative = ode.rule(0, [3]); // Returns [-5] Copy
const ode = Chalkboard.diff.linear1(-2, 1);const derivative = ode.rule(0, [3]); // Returns [-5]
Defines a first-order linear scalar ODE: y' = a(t)y + b(t).