v0.3.0-dev-9 #324

Merged
altavir merged 265 commits from dev into master 2021-05-08 17:16:29 +03:00
Showing only changes of commit b7e1349ead - Show all commits

View File

@ -1,6 +1,7 @@
package space.kscience.kmath.tensors.core
import space.kscience.kmath.tensors.AnalyticTensorAlgebra
import kotlin.math.*
public class DoubleAnalyticTensorAlgebra:
AnalyticTensorAlgebra<Double, DoubleTensor>,
@ -63,7 +64,11 @@ public class DoubleAnalyticTensorAlgebra:
}
override fun DoubleTensor.atanh(): DoubleTensor {
TODO("Not yet implemented")
return DoubleTensor(
this.shape,
this.buffer.array().map(::atanh).toDoubleArray(),
this.bufferStart
)
}
override fun DoubleTensor.ceil(): DoubleTensor {