def test_normcdf_log_3d_input(self):
     x = arange(8.0).reshape(2, 2, 2)
     utils.normcdf(x, log=True)
 def test_normcdf_log_1d_input(self):
     x = arange(8.0)
     utils.normcdf(x, log=True)
 def test_normcdf_2d_input(self):
     x = arange(8.0).reshape(2, 4)
     utils.normcdf(x)
Beispiel #4
0
 def test_normcdf_log_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x, log=True)
 def test_normcdf_1d_input(self):
     x = arange(8.0)
     utils.normcdf(x)
Beispiel #6
0
 def test_normcdf_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x)
Beispiel #7
0
 def test_normcdf_log_1d_input(self):
     x = arange(8.)
     utils.normcdf(x, log=True)
Beispiel #8
0
 def test_normcdf_1d_input(self):
     x = arange(8.)
     utils.normcdf(x)
Beispiel #9
0
 def test_normcdf_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x)
Beispiel #10
0
 def test_normcdf_log_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x, log=True)