PLU

struct PLU (
M
) if (
isNarrowMatrix!M &&
!isAbstractMatrix!M
) {
size_t[] piv;
bool isEvenP;
M lu;
}

Members

Functions

inverse
M inverse()

逆行列を求める

solveInPlace
auto solveInPlace(V b)

Ax = bとなるxを解きます

Meta