eig
fun LinAlg.eig(mat: MultiArray<Float, D2>): Pair<D1Array<ComplexFloat>, D2Array<ComplexFloat>>
Content copied to clipboard
Calculates the eigenvalues and eigenvectors of a float matrix
Return
a pair of a vector of eigenvalues and a matrix of eigenvectors
fun <T : Number> LinAlg.eig(mat: MultiArray<T, D2>): Pair<D1Array<ComplexDouble>, D2Array<ComplexDouble>>
Content copied to clipboard
Calculates the eigenvalues and eigenvectors of a numeric matrix
Return
a pair of a vector of eigenvalues and a matrix of eigenvectors
fun <T : Complex> LinAlg.eig(mat: MultiArray<T, D2>): Pair<D1Array<T>, D2Array<T>>
Content copied to clipboard
Calculates the eigenvalues and eigenvectors of a complex matrix
Return
a pair of a vector of eigenvalues and a matrix of eigenvectors