LA::Utils::LUMatrix(T)
Inherits Struct / Value / Object
Struct holding lu-decomposition of a matrix
Can be used to solve linear equations
Constructors
Instance methods
solve(b, transpose = LUTranspose::None, *, overwrite_b = false)
Solves A*x = b equations system with given b and returns x
transpose allows to solve A.t * x = b and A.conjt * x = b systems instead
if overwrite_b is true, b will be overriden in process of calculation
Uses getrs LAPACK routine