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

◆ IM2_Matrix_transpose()

const Matrix * IM2_Matrix_transpose ( const Matrix * M)

Definition at line 425 of file matrix.cpp.

426{
427 try
428 {
429 return M->transpose();
430 } catch (const exc::engine_error& e)
431 {
432 ERROR(e.what());
433 return nullptr;
434 }
435}
Matrix * transpose() const
Definition matrix.cpp:566
const int ERROR
Definition m2-mem.cpp:55

References ERROR, Matrix, and Matrix::transpose().