Example #1
0
 def test_ssp1(self):
     y = np.random.uniform(-1.0,1.0,size=(10,1))
     f = np.sin(y)
     plt.sufficient_summary(y, f)
 def test_ssp2(self):
     y = np.random.uniform(-1.0, 1.0, size=(20, 2))
     f = np.sin(y[:, 0]) * np.sin(y[:, 1])
     plt.sufficient_summary(y, f)
Example #3
0
 def test_ssp2(self):
     y = np.random.uniform(-1.0,1.0,size=(20,2))
     f = np.sin(y[:,0])*np.sin(y[:,1])
     plt.sufficient_summary(y, f)
 def test_ssp1(self):
     y = np.random.uniform(-1.0, 1.0, size=(10, 1))
     f = np.sin(y)
     plt.sufficient_summary(y, f)