| Cv2EigenNonSymmetric Method |
Calculates eigenvalues and eigenvectors of a non-symmetric matrix (real eigenvalues only).
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void EigenNonSymmetric(
InputArray src,
OutputArray eigenvalues,
OutputArray eigenvectors
)
Public Shared Sub EigenNonSymmetric (
src As InputArray,
eigenvalues As OutputArray,
eigenvectors As OutputArray
)
public:
static void EigenNonSymmetric(
InputArray^ src,
OutputArray^ eigenvalues,
OutputArray^ eigenvectors
)
static member EigenNonSymmetric :
src : InputArray *
eigenvalues : OutputArray *
eigenvectors : OutputArray -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
input matrix (CV_32FC1 or CV_64FC1 type). - eigenvalues
- Type: OpenCvSharpOutputArray
output vector of eigenvalues (type is the same type as src). - eigenvectors
- Type: OpenCvSharpOutputArray
output matrix of eigenvectors (type is the same type as src). The eigenvectors are stored as subsequent matrix rows, in the same order as the corresponding eigenvalues.
See Also