Click or drag to resize

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
)

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