Skip to content

Commit

Permalink
DOC: make docstrings of matrix properties (.T, .H, .I, .A, .A1) work.
Browse files Browse the repository at this point in the history
Closes numpygh-1939.
  • Loading branch information
rgommers committed Oct 4, 2013
1 parent f665c61 commit cc99961
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions numpy/matrixlib/defmatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ def getT(self):
"""
Returns the transpose of the matrix.
Does *not* conjugate! For the complex conjugate transpose, use `getH`.
Does *not* conjugate! For the complex conjugate transpose, use ``.H``.
Parameters
----------
Expand Down Expand Up @@ -991,11 +991,11 @@ def getH(self):
else:
return self.transpose()

T = property(getT, None, doc="transpose")
A = property(getA, None, doc="base array")
A1 = property(getA1, None, doc="1-d base array")
H = property(getH, None, doc="hermitian (conjugate) transpose")
I = property(getI, None, doc="inverse")
T = property(getT, None)
A = property(getA, None)
A1 = property(getA1, None)
H = property(getH, None)
I = property(getI, None)

def _from_string(str, gdict, ldict):
rows = str.split(';')
Expand Down

0 comments on commit cc99961

Please sign in to comment.