Пример #1
0
 def test_normcdf_log_3d_input(self):
     x = arange(8.0).reshape(2, 2, 2)
     utils.normcdf(x, log=True)
Пример #2
0
 def test_normcdf_log_1d_input(self):
     x = arange(8.0)
     utils.normcdf(x, log=True)
Пример #3
0
 def test_normcdf_2d_input(self):
     x = arange(8.0).reshape(2, 4)
     utils.normcdf(x)
Пример #4
0
 def test_normcdf_log_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x, log=True)
Пример #5
0
 def test_normcdf_1d_input(self):
     x = arange(8.0)
     utils.normcdf(x)
Пример #6
0
 def test_normcdf_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x)
Пример #7
0
 def test_normcdf_log_1d_input(self):
     x = arange(8.)
     utils.normcdf(x, log=True)
Пример #8
0
 def test_normcdf_1d_input(self):
     x = arange(8.)
     utils.normcdf(x)
Пример #9
0
 def test_normcdf_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x)
Пример #10
0
 def test_normcdf_log_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x, log=True)