We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104dde9 commit 0dc758aCopy full SHA for 0dc758a
src/sage/matrix/matrix2.pyx
@@ -5189,8 +5189,8 @@ cdef class Matrix(Matrix1):
5189
5190
def image(self):
5191
"""
5192
- Return the image of the homomorphism on rows defined by this
5193
- matrix.
+ Return the image of the homomorphism on rows defined by right
+ multiplication by this matrix: that is, the row-space.
5194
5195
EXAMPLES::
5196
@@ -5213,6 +5213,12 @@ cdef class Matrix(Matrix1):
5213
5214
sage: image(B) == B.row_module()
5215
True
5216
+ sage: image(B) == B.transpose().column_module()
5217
+ True
5218
+
5219
+ .. SEEALSO::
5220
5221
+ :meth:`row_module`, :meth:`column_module`
5222
5223
return self.row_module()
5224
0 commit comments