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

◆ IM2_Matrix_reshape()

const Matrix * IM2_Matrix_reshape ( const Matrix * M,
const FreeModule * F,
const FreeModule * G )

Definition at line 437 of file matrix.cpp.

440{
441 try
442 {
443 return M->reshape(F, G);
444 } catch (const exc::engine_error& e)
445 {
446 ERROR(e.what());
447 return nullptr;
448 }
449}
Matrix * reshape(const FreeModule *G, const FreeModule *H) const
Definition matrix.cpp:516
const int ERROR
Definition m2-mem.cpp:55
tbb::flow::graph G

References ERROR, G, Matrix, and Matrix::reshape().