EigenVector Function

Top  Previous  Next

Description

Calculates the eigen vectors of a matrix such that when an eigen vector is multiplied by the matrix, the result is equal to the matrix multiplied by a constant.

 

This function has been Deprecated. Please use Matrix.EigenDecomposition(Matrix,Matrix) instead.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

Click here to see the documentation for this object in nanosecond timing precision mode.

 

Overload List

Signatures

Return Value

Description

EigenVector(Array rowMajorSymMatrix, Variable numRows, Variable numCols, Array eigenVectors)

Variable

Calculate the eigen vectors of a numRows by numCols matrix rowMajorSymMatrix. The eigen vector is stored in eigenVectors.

EigenVector(Array rowMajorSymMatrix, Variable numRows, Variable numCols, Array eigenVectors, Array eigenValues)

Variable

Calculate the eigen vectors and eigen values of a numRows by numCols matrix rowMajorSymMatrix. The eigen vectors are stored in eigenVectors. The eigen values are stored in eigenValues.

 

 

See also

Functions