コード例 #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
ファイル: test_utils.py プロジェクト: AsymmetricHuang/pymc
 def test_normcdf_3d_input(self):
     x = arange(8.).reshape(2, 2, 2)
     utils.normcdf(x)
コード例 #10
0
ファイル: test_utils.py プロジェクト: AsymmetricHuang/pymc
 def test_normcdf_log_2d_input(self):
     x = arange(8.).reshape(2, 4)
     utils.normcdf(x, log=True)