Ask Your Question

Thierry Dumont's profile - activity

2020-09-30 12:57:04 +0100 received badge  Nice Question (source)
2020-09-30 12:24:13 +0100 received badge  Student (source)
2020-09-30 12:09:00 +0100 asked a question Testing if an object is a matrix

Some time ago, to test if A is a matrix, I just used:

from sage.matrix.matrix import is_Matrix
if is_Matrix(A):
    ...

But this is now deprecated. What should I use instead?