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

◆ IM2_Matrix_tensor()

const Matrix * IM2_Matrix_tensor ( const Matrix * M,
const Matrix * N )

Definition at line 401 of file matrix.cpp.

402{
403 try
404 {
405 return M->tensor(N);
406 } catch (const exc::engine_error& e)
407 {
408 ERROR(e.what());
409 return nullptr;
410 }
411}
Matrix * tensor(const Matrix *m) const
Definition matrix.cpp:780
const int ERROR
Definition m2-mem.cpp:55

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