IsPositiveGrading |
Syntax |
IsPositiveGrading(M: MAT): BOOL IsPositiveGrading(M: MAT,N: INT): BOOL |
Description |
Example |
/**/ IsPositiveGrading(LexMat(5)); true /**/ IsPositiveGrading(LexMat(5),3); --considering only the first three rows false /**/ IsPositiveGrading(mat([[0,2,3], [1, -1, 0]])); true /**/ IsPositiveGrading(mat([[1,1], [0,-1], [-1, 0]])); true |
See Also |