Public Member Functions | |
SymMatrix2d | __iadd__ (self, SymMatrix2d b) |
SymMatrix2d | __imatmul__ (self, float b) |
None | __init__ (self) |
None | __init__ (self, SymMatrix2d arg0) |
SymMatrix2d | __isub__ (self, SymMatrix2d b) |
SymMatrix2d | __itruediv__ (self, float b) |
float | det (self) |
Vector2d | eigens (self, Matrix2d eigenvectors=None) |
Vector2d | eigenvector (self, float eigenvalue) |
SymMatrix2d | inverse (self) |
SymMatrix2d | inverse (self, float det) |
Vector2d | maxEigenvector (self) |
float | normSq (self) |
SymMatrix2d | pseudoinverse (self, float tol=2.220446049250313e-16, int_output rank=None, Vector2d space=None) |
float | trace (self) |
float | xx (self) |
None | xx (self, float arg1) |
float | xy (self) |
None | xy (self, float arg1) |
float | yy (self) |
None | yy (self, float arg1) |
Static Public Member Functions | |
SymMatrix2d | diagonal (float diagVal) |
SymMatrix2d | identity () |
Generated from: MR::SymMatrix2d Aliases: SymMatrix2_double, Vector2_double_SymMatrixType, QuadraticForm_Vector2d_SM, SymMatrix2_double symmetric 2x2 matrix \\ingroup MatrixGroup
None meshlib.mrmeshpy.SymMatrix2d.__init__ | ( | self | ) |
None meshlib.mrmeshpy.SymMatrix2d.__init__ | ( | self, | |
SymMatrix2d | arg0 ) |
Implicit copy constructor.
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.__iadd__ | ( | self, | |
SymMatrix2d | b ) |
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.__imatmul__ | ( | self, | |
float | b ) |
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.__isub__ | ( | self, | |
SymMatrix2d | b ) |
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.__itruediv__ | ( | self, | |
float | b ) |
float meshlib.mrmeshpy.SymMatrix2d.det | ( | self | ) |
computes determinant of the matrix
|
static |
returns eigenvalues of the matrix in ascending order (diagonal matrix L), and optionally returns corresponding unit eigenvectors in the rows of orthogonal matrix V, M*V^T = V^T*L; M = V^T*L*V
Vector2d meshlib.mrmeshpy.SymMatrix2d.eigenvector | ( | self, | |
float | eigenvalue ) |
computes not-unit eigenvector corresponding to a not-repeating eigenvalue
|
static |
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.inverse | ( | self | ) |
computes inverse matrix
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.inverse | ( | self, | |
float | det ) |
computes inverse matrix given determinant of this
Vector2d meshlib.mrmeshpy.SymMatrix2d.maxEigenvector | ( | self | ) |
computes not-unit eigenvector corresponding to maximum eigenvalue
float meshlib.mrmeshpy.SymMatrix2d.normSq | ( | self | ) |
computes the squared norm of the matrix, which is equal to the sum of 4 squared elements
SymMatrix2d meshlib.mrmeshpy.SymMatrix2d.pseudoinverse | ( | self, | |
float | tol = 2.220446049250313e-16, | ||
int_output | rank = None, | ||
Vector2d | space = None ) |
for not-degenerate matrix returns just inverse matrix, otherwise returns degenerate matrix, which performs inversion on not-kernel subspace; \\param tol relative epsilon-tolerance for too small number detection \\param rank optional output for this matrix rank according to given tolerance \\param space rank=1: unit direction of solution line, rank=2: zero vector
float meshlib.mrmeshpy.SymMatrix2d.trace | ( | self | ) |
computes trace of the matrix
float meshlib.mrmeshpy.SymMatrix2d.xx | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix2d.xx | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix2d.xy | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix2d.xy | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix2d.yy | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix2d.yy | ( | self, | |
float | arg1 ) |