This commit is contained in:
Andrei Kislitsyn 2021-05-07 23:06:41 +03:00
parent dde1db7b0a
commit 11a1624e64

View File

@ -9,12 +9,12 @@ import space.kscience.kmath.tensors.api.Tensor
import space.kscience.kmath.tensors.core.internal.tensor import space.kscience.kmath.tensors.core.internal.tensor
/** /**
* Casts [Tensor] iof [Double] to [DoubleTensor] * Casts [Tensor] of [Double] to [DoubleTensor]
*/ */
public fun Tensor<Double>.toDoubleTensor(): DoubleTensor = this.tensor public fun Tensor<Double>.toDoubleTensor(): DoubleTensor = this.tensor
/** /**
* Casts [Tensor] iof [Int] to [IntTensor] * Casts [Tensor] of [Int] to [IntTensor]
*/ */
public fun Tensor<Int>.toIntTensor(): IntTensor = this.tensor public fun Tensor<Int>.toIntTensor(): IntTensor = this.tensor