def test_tensor_algebra(): # Test that the computation of tensor determinant and norm is correct test_arr = np.random.rand(10, 3, 3) t_det = dti.determinant(test_arr) t_norm = dti.norm(test_arr) for i, x in enumerate(test_arr): npt.assert_almost_equal(np.linalg.det(x), t_det[i]) npt.assert_almost_equal(np.linalg.norm(x), t_norm[i])
def test_tensor_algebra(): """ Test that the computation of tensor determinant and norm is correct """ test_arr = np.random.rand(10, 3, 3) t_det = dti.determinant(test_arr) t_norm = dti.norm(test_arr) for i, x in enumerate(test_arr): assert_almost_equal(np.linalg.det(x), t_det[i]) assert_almost_equal(np.linalg.norm(x), t_norm[i])