TridiagonalSystemSolver
Uses the Tridiagonal Matrix Algorithm, also known as the Thomas Algorithm, to solve a system of linear equations where the coefficient matrix is a tridiagonal matrix.
See also
Functions
Link copied to clipboard
fun solve(diagonal: ReadonlyArray<Double>, lower: ReadonlyArray<Double>, upper: ReadonlyArray<Double>, right: ReadonlyArray<Cartesian3>): ReadonlyArray<Cartesian3>
Solves a tridiagonal system of linear equations.