Lin Alg Ex
Functions
Link copied to clipboard
abstract fun <T : Complex> dotMMComplex(a: MultiArray<T, D2>, b: MultiArray<T, D2>): NDArray<T, D2>
Content copied to clipboard
Dot products of two complex matrices.
Link copied to clipboard
abstract fun <T : Complex> dotMVComplex(a: MultiArray<T, D2>, b: MultiArray<T, D1>): NDArray<T, D1>
Content copied to clipboard
Dot products of complex matrix and complex vector.
Link copied to clipboard
abstract fun <T : Complex> dotVVComplex(a: MultiArray<T, D1>, b: MultiArray<T, D1>): T
Content copied to clipboard
Dot products of two complex vectors. Scalar product.
Link copied to clipboard
abstract fun <T : Number> eig(mat: MultiArray<T, D2>): Pair<D1Array<ComplexDouble>, D2Array<ComplexDouble>>
Content copied to clipboard
Calculates the eigenvalues and eigenvectors of a numeric matrix
Link copied to clipboard
abstract fun eigF(mat: MultiArray<Float, D2>): Pair<D1Array<ComplexFloat>, D2Array<ComplexFloat>>
Content copied to clipboard
Calculates the eigenvalues and eigenvectors of a float matrix
Link copied to clipboard
abstract fun <T : Number> eigVals(mat: MultiArray<T, D2>): D1Array<ComplexDouble>
Content copied to clipboard
Calculates the eigenvalues of a numeric matrix.
Link copied to clipboard
Calculates the eigenvalues of a float matrix