Table of Contents

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

src InputArray

input matrix (CV_32FC1 or CV_64FC1 type).

eigenvalues OutputArray

output vector of eigenvalues (type is the same type as src).

eigenvectors OutputArray

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.