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)
Example #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)
Example #6
0
 def test_normcdf_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x)
Example #7
0
 def test_normcdf_log_1d_input(self):
     x = arange(8.)
     utils.normcdf(x, log=True)
Example #8
0
 def test_normcdf_1d_input(self):
     x = arange(8.)
     utils.normcdf(x)
Example #9
0
 def test_normcdf_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x)
Example #10
0
 def test_normcdf_log_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x, log=True)