Method EigenNonSymmetric
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
EigenNonSymmetric(InputArray, OutputArray, OutputArray)
Calculates eigenvalues and eigenvectors of a non-symmetric matrix (real eigenvalues only).
public static void EigenNonSymmetric(InputArray src, OutputArray eigenvalues, OutputArray eigenvectors)
Parameters
srcInputArrayinput matrix (CV_32FC1 or CV_64FC1 type).
eigenvaluesOutputArrayoutput vector of eigenvalues (type is the same type as src).
eigenvectorsOutputArrayoutput 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.