We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f63c0 commit eda0549Copy full SHA for eda0549
mkl_random/tests/test_random.py
@@ -890,9 +890,11 @@ def test_vonmises_small(self):
890
def test_wald(self):
891
rnd.seed(self.seed, brng=self.brng)
892
actual = rnd.wald(mean=1.23, scale=1.54, size=(3, 2))
893
- desired = np.array([[0.3465678392232347, 0.3594497155916536],
894
- [2.192908727996422, 1.7408141717513501],
895
- [1.1943709105062374, 0.3273455943060196]])
+ desired = np.array(
+ [[0.22448558337033758, 0.23485255518098838],
+ [2.756850184899666, 2.005347850108636],
896
+ [1.179918636588408, 0.20928649815442452]
897
+ ])
898
np.testing.assert_array_almost_equal(actual, desired, decimal=10)
899
900
def test_weibull(self):
0 commit comments