AddDgetri for computing matrix inverses

This commit is contained in:
btracey
2015-09-12 18:10:56 -06:00
parent 06e669490a
commit 7411c6944f
6 changed files with 214 additions and 2 deletions

View File

@@ -36,6 +36,10 @@ func TestDgeqrf(t *testing.T) {
testlapack.DgeqrfTest(t, impl)
}
func TestDgetri(t *testing.T) {
testlapack.DgetriTest(t, impl)
}
func TestDgetf2(t *testing.T) {
testlapack.Dgetf2Test(t, impl)
}