Computes eigenvalues and eigenvectors of symmetric matrix
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Parameters
- mat
- Type: OpenCvSharpCvArr
The input symmetric square matrix. It is modified during the processing. - evects
- Type: OpenCvSharpCvArr
The output matrix of eigenvectors, stored as a subsequent rows. - evals
- Type: OpenCvSharpCvArr
The output vector of eigenvalues, stored in the descending order (order of eigenvalues and eigenvectors is synchronized, of course). - eps
- Type: SystemDouble
Accuracy of diagonalization (typically, DBL_EPSILON=≈10-15 is enough).
See Also