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

◆ rawLinAlgRankProfile()

M2_arrayintOrNull rawLinAlgRankProfile ( MutableMatrix * A,
M2_bool row_profile )

Definition at line 874 of file mutable-matrix.cpp.

875{
876 try
877 {
878 return A->rankProfile(row_profile);
879 } catch (const exc::engine_error& e)
880 {
881 ERROR(e.what());
882 return nullptr;
883 }
884}
virtual M2_arrayintOrNull rankProfile(bool row_profile) const =0
const int ERROR
Definition m2-mem.cpp:55

References ERROR, and MutableMatrix::rankProfile().