Skip to content

Commit 0dc758a

Browse files
committed
cross linked matrix method
1 parent 104dde9 commit 0dc758a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/sage/matrix/matrix2.pyx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5189,8 +5189,8 @@ cdef class Matrix(Matrix1):
51895189

51905190
def image(self):
51915191
"""
5192-
Return the image of the homomorphism on rows defined by this
5193-
matrix.
5192+
Return the image of the homomorphism on rows defined by right
5193+
multiplication by this matrix: that is, the row-space.
51945194

51955195
EXAMPLES::
51965196

@@ -5213,6 +5213,12 @@ cdef class Matrix(Matrix1):
52135213

52145214
sage: image(B) == B.row_module()
52155215
True
5216+
sage: image(B) == B.transpose().column_module()
5217+
True
5218+
5219+
.. SEEALSO::
5220+
5221+
:meth:`row_module`, :meth:`column_module`
52165222
"""
52175223
return self.row_module()
52185224

0 commit comments

Comments
 (0)