Public Member Functions | |
SymMatrix3d | __iadd__ (self, SymMatrix3d b) |
SymMatrix3d | __imatmul__ (self, float b) |
None | __init__ (self) |
None | __init__ (self, SymMatrix3d arg0) |
SymMatrix3d | __isub__ (self, SymMatrix3d b) |
SymMatrix3d | __itruediv__ (self, float b) |
float | det (self) |
Vector3d | eigens (self, Matrix3d eigenvectors=None) |
Vector3d | eigenvector (self, float eigenvalue) |
SymMatrix3d | inverse (self) |
SymMatrix3d | inverse (self, float det) |
float | normSq (self) |
SymMatrix3d | pseudoinverse (self, float tol=2.220446049250313e-16, int_output rank=None, Vector3d space=None) |
float | trace (self) |
float | xx (self) |
None | xx (self, float arg1) |
float | xy (self) |
None | xy (self, float arg1) |
float | xz (self) |
None | xz (self, float arg1) |
float | yy (self) |
None | yy (self, float arg1) |
float | yz (self) |
None | yz (self, float arg1) |
float | zz (self) |
None | zz (self, float arg1) |
Static Public Member Functions | |
SymMatrix3d | diagonal (float diagVal) |
SymMatrix3d | identity () |
Generated from: MR::SymMatrix3d Aliases: SymMatrix3_double, SymMatrix3_double, Vector3_double_SymMatrixType, QuadraticForm_Vector3d_SM symmetric 3x3 matrix \\ingroup MatrixGroup
None meshlib.mrmeshpy.SymMatrix3d.__init__ | ( | self | ) |
None meshlib.mrmeshpy.SymMatrix3d.__init__ | ( | self, | |
SymMatrix3d | arg0 ) |
Implicit copy constructor.
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.__iadd__ | ( | self, | |
SymMatrix3d | b ) |
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.__imatmul__ | ( | self, | |
float | b ) |
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.__isub__ | ( | self, | |
SymMatrix3d | b ) |
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.__itruediv__ | ( | self, | |
float | b ) |
float meshlib.mrmeshpy.SymMatrix3d.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
Vector3d meshlib.mrmeshpy.SymMatrix3d.eigenvector | ( | self, | |
float | eigenvalue ) |
computes not-unit eigenvector corresponding to a not-repeating eigenvalue
|
static |
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.inverse | ( | self | ) |
computes inverse matrix
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.inverse | ( | self, | |
float | det ) |
computes inverse matrix given determinant of this
float meshlib.mrmeshpy.SymMatrix3d.normSq | ( | self | ) |
computes the squared norm of the matrix, which is equal to the sum of 9 squared elements
SymMatrix3d meshlib.mrmeshpy.SymMatrix3d.pseudoinverse | ( | self, | |
float | tol = 2.220446049250313e-16, | ||
int_output | rank = None, | ||
Vector3d | 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: unit normal to solution plane, rank=3: zero vector
float meshlib.mrmeshpy.SymMatrix3d.trace | ( | self | ) |
computes trace of the matrix
float meshlib.mrmeshpy.SymMatrix3d.xx | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.xx | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix3d.xy | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.xy | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix3d.xz | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.xz | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix3d.yy | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.yy | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix3d.yz | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.yz | ( | self, | |
float | arg1 ) |
float meshlib.mrmeshpy.SymMatrix3d.zz | ( | self | ) |
zero matrix by default
None meshlib.mrmeshpy.SymMatrix3d.zz | ( | self, | |
float | arg1 ) |