Abstract base class for matrices.
For design documentation see matrix/docs.py.
-
class sage.matrix.matrix.Matrix
-
static __new__()
- T.__new__(S, ...) -> a new object with type S, a subtype of T
-
sage.matrix.matrix.is_Matrix()
EXAMPLES:
sage: from sage.matrix.matrix import is_Matrix
sage: is_Matrix(0)
False
sage: is_Matrix(matrix([[1,2],[3,4]]))
True