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

◆ IM2_Matrix_symm()

const Matrix * IM2_Matrix_symm ( int p,
const Matrix * M )

Definition at line 540 of file matrix.cpp.

541{
542 try
543 {
544 return M->symm(p);
545 } catch (const exc::engine_error& e)
546 {
547 ERROR(e.what());
548 return nullptr;
549 }
550}
Matrix * symm(int n) const
int p
const int ERROR
Definition m2-mem.cpp:55

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