Macaulay2 Engine
Loading...
Searching...
No Matches

◆ solveInvertible() [1/3]

template<typename RT>
bool MatrixOps::solveInvertible ( const DMat< RT > & A,
const DMat< RT > & B,
DMat< RT > & X )
inline

Definition at line 657 of file mat-linalg.hpp.

658{
659 DMatLinAlg<RT> LUdecomp(A);
660 return LUdecomp.solveInvertible(B, X);
661}

References DMatLinAlg< RingType >::solveInvertible().