Attributes
- A
A = property(getA, None, doc = 'base array')
- H
H = property(getH, None, doc = 'hermitian (conjugate) transpose')
- I
I = property(getI, None, doc = 'inverse')
- T
T = property(getT, None, doc = 'transpose')
Method summary
- __array_finalize__(self, obj)
- __getitem__(self, index)
- __imul__(self, other)
- __mul__(self, other)
- __new__(subtype, data, dtype = None, copy = True)
- __pow__(self, other)
- __repr__(self)
- __rmul__(self, other)
- __rpow__(self, other)
- __str__(self)
- all(self, axis = None)
- any(self, axis = None)
- argmax(self, axis = None)
- argmin(self, axis = None)
- getA(self)
- getH(self)
- getI(self)
- getT(self)
- max(self, axis = None)
- mean(self, axis = None)
- min(self, axis = None)
- prod(self, axis = None, dtype = None)
- ptp(self, axis = None)
- std(self, axis = None, dtype = None)
- sum(self, axis = None, dtype = None)
- tolist(self)
- var(self, axis = None, dtype = None)
Methods
- __array_finalize__(self, obj)
- __getitem__(self, index)
- __imul__(self, other)
- __mul__(self, other)
- __new__(subtype, data, dtype = None, copy = True)
- __pow__(self, other)
- __repr__(self)
- __rmul__(self, other)
- __rpow__(self, other)
- __str__(self)
- all(self, axis = None)
- any(self, axis = None)
- argmax(self, axis = None)
- argmin(self, axis = None)
- getA(self)
- getH(self)
- getI(self)
- getT(self)
- max(self, axis = None)
- mean(self, axis = None)
- min(self, axis = None)
- prod(self, axis = None, dtype = None)
- ptp(self, axis = None)
- std(self, axis = None, dtype = None)
- sum(self, axis = None, dtype = None)
Sum the matrix over the given axis. If the axis is None, sum over all dimensions. This preserves the orientation of the result as a row or column.
- tolist(self)
- var(self, axis = None, dtype = None)
