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

◆ IM2_Matrix_exterior()

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

Definition at line 552 of file matrix.cpp.

555{
556 try
557 {
558 return M->exterior(p, strategy);
559 } catch (const exc::engine_error& e)
560 {
561 ERROR(e.what());
562 return nullptr;
563 }
564
565}
Matrix * exterior(int p, int strategy) const
Definition det.cpp:425
int p
const int ERROR
Definition m2-mem.cpp:55

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