test to fix determinant

This commit is contained in:
Roland Grinis 2021-04-09 12:26:03 +01:00
parent 1e8da7a87b
commit b51427d2ab

View File

@ -34,6 +34,19 @@ class TestDoubleLinearOpsTensorAlgebra {
}
@Test
fun testDet() = DoubleLinearOpsTensorAlgebra {
val m = fromArray(
intArrayOf(3, 3), doubleArrayOf(
2.1843, 1.4391, -0.4845,
1.4391, 1.7772, 0.4055,
-0.4845, 0.4055, 0.7519
)
)
println(m.det().value())
println(0.0197) //expected value
}
@Test
fun testInvLU() = DoubleLinearOpsTensorAlgebra {
val tensor = fromArray(