forked from kscience/kmath
added tests for std, variance
This commit is contained in:
parent
f8c55328a4
commit
0440764cd3
@ -299,4 +299,14 @@ internal class TestDoubleAnalyticTensorAlgebra {
|
|||||||
doubleArrayOf(1.5, 0.5)
|
doubleArrayOf(1.5, 0.5)
|
||||||
)}
|
)}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun testStd() = DoubleTensorAlgebra {
|
||||||
|
assertTrue { floor(tensor5.std() * 10000 ) / 10000 == 2.9439 }
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun testVariance() = DoubleTensorAlgebra {
|
||||||
|
assertTrue { floor(tensor5.variance() * 10000 ) / 10000 == 8.6666 }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user