Skip to content

Commit 43fcd94

Browse files
author
Release Manager
committed
gh-pr-34972: Cross-link matrix methods image and column_space This is my pull request originally created on trac, which I thought pushing on github. Fixes #33548 URL: #34972 Reported by: Rohan Garg Reviewer(s): Marc Mezzarobba
2 parents 3b94a2e + 0dc758a commit 43fcd94

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
@@ -5241,8 +5241,8 @@ cdef class Matrix(Matrix1):
52415241

52425242
def image(self):
52435243
"""
5244-
Return the image of the homomorphism on rows defined by this
5245-
matrix.
5244+
Return the image of the homomorphism on rows defined by right
5245+
multiplication by this matrix: that is, the row-space.
52465246

52475247
EXAMPLES::
52485248

@@ -5265,6 +5265,12 @@ cdef class Matrix(Matrix1):
52655265

52665266
sage: image(B) == B.row_module()
52675267
True
5268+
sage: image(B) == B.transpose().column_module()
5269+
True
5270+
5271+
.. SEEALSO::
5272+
5273+
:meth:`row_module`, :meth:`column_module`
52685274
"""
52695275
return self.row_module()
52705276

0 commit comments

Comments
 (0)