Add missing JvmName annotations

This commit is contained in:
Iaroslav Postovalov 2021-01-17 18:59:20 +07:00
parent bd178d77ba
commit 6636b228f3
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -93,6 +93,7 @@ public fun <T : Any> Matrix<T>.transpose(): Matrix<T> = getFeature<TransposedFea
*
*
*/
@JvmName("transposeConjugateDouble")
public fun Matrix<Double>.transposeConjugate(): Matrix<Double> = transpose()
/**
@ -100,6 +101,7 @@ public fun Matrix<Double>.transposeConjugate(): Matrix<Double> = transpose()
*
* @return the Hermitian conjugate of this matrix.
*/
@JvmName("transposeConjugateComplex")
public fun Matrix<Complex>.transposeConjugate(): Matrix<Complex> {
val t = transpose()
return VirtualMatrix(t.rowNum, t.colNum) { i, j -> t[i,j].conjugate }