diff --git a/src/sage/matrix/matrix1.pyx b/src/sage/matrix/matrix1.pyx index 1ae2d24c103..94b8e1ee518 100644 --- a/src/sage/matrix/matrix1.pyx +++ b/src/sage/matrix/matrix1.pyx @@ -1117,7 +1117,8 @@ cdef class Matrix(matrix0.Matrix): ########################################################################### def stack(self, bottom, subdivide=False): r""" - Return the matrix ``self`` on top of ``bottom``:: + Return a new matrix formed by appending the matrix (or vector) + ``bottom`` below ``self``:: [ self ] [ bottom ] @@ -1158,7 +1159,6 @@ cdef class Matrix(matrix0.Matrix): :func:`~sage.matrix.constructor.block_diagonal_matrix` useful and simpler in some instances. - EXAMPLES: Stacking with a matrix. ::