-
-
Notifications
You must be signed in to change notification settings - Fork 229
Observations
Chris Fonnesbeck edited this page Apr 12, 2016
·
1 revision
Get mean.py
and cov.py
from Mean and Covariance, then do
# Import the mean and covariance
from mean import M
from cov import C
from pymc.gp import *
from numpy import *
# Impose observations on the GP
o = array([-.5,.5])
V = array([.002,.002])
data = array([3.1, 2.9])
observe(M, C, obs_mesh=o, obs_V = V, obs_vals = data)
# Generate realizations
f_list=[Realization(M, C) for i in range(3)]
x=arange(-1.,1.,.01)
#### - Plot - ####
if __name__ == '__main__':
from pylab import *
x=arange(-1.,1.,.01)
clf()
plot_envelope(M, C, mesh=x)
for f in f_list:
plot(x, f(x))
xlabel('x')
ylabel('f(x)')
title('Three realizations of the observed GP')
axis('tight')
# show()