Coverage for local/lib/python2.7/site-packages/sage/matrix/matrix.pyx : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
""" Abstract base class for matrices
For design documentation see matrix/docs.py.
TESTS::
sage: from sage.matrix.matrix import Matrix doctest:...: DeprecationWarning: the module sage.matrix.matrix is deprecated See http://trac.sagemath.org/24096 for details. sage: Matrix <type 'sage.matrix.matrix2.Matrix'> """
################################################################################ # Copyright (C) 2005, 2006 William Stein <wstein@gmail.com> # # Distributed under the terms of the GNU General Public License (GPL). # The full text of the GPL is available at: # # http://www.gnu.org/licenses/ ################################################################################
""" EXAMPLES::
sage: from sage.matrix.matrix import is_Matrix sage: is_Matrix(0) False sage: is_Matrix(matrix([[1,2],[3,4]])) True """
|