Module systems

Module systems 

Source
Expand description

Linear system of ODEs solver

Solves systems of first-order linear ODEs with constant coefficients: dx/dt = Ax where A is a constant matrix

Uses eigenvalue-eigenvector method for diagonalizable systems: x(t) = c₁e^(λ₁t)v₁ + c₂e^(λ₂t)v₂ + … + cₙe^(λₙt)vₙ

Structs§

LinearSystemSolver
Linear system of ODEs solver