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

◆ IM2_Matrix_minors()

const Matrix * IM2_Matrix_minors ( int p,
const Matrix * M,
int strategy )

Definition at line 581 of file matrix.cpp.

584{
585 try
586 {
587 return M->minors(p, strategy);
588 } catch (const exc::engine_error& e)
589 {
590 ERROR(e.what());
591 return nullptr;
592 }
593}
Matrix * minors(int p, int strategy) const
Definition det.cpp:440
int p
const int ERROR
Definition m2-mem.cpp:55

References ERROR, Matrix, Matrix::minors(), and p.