eigVals

@JvmName(name = "eigValsF")
fun LinAlg.eigVals(mat: MultiArray<Float, D2>): D1Array<ComplexFloat>

Calculates the eigenvalues of a float matrix

Return

ComplexFloat vector


@JvmName(name = "eigVals")
fun <T : Number> LinAlg.eigVals(mat: MultiArray<T, D2>): D1Array<ComplexDouble>

Calculates the eigenvalues of a numeric matrix.

Return

ComplexDouble vector


@JvmName(name = "eigValsC")
fun <T : Complex> LinAlg.eigVals(mat: MultiArray<T, D2>): D1Array<T>

Calculates the eigenvalues of a float matrix

Return

complex vector