starting varDTC with uncertain inputs [not working]

This commit is contained in:
Max Zwiessele 2014-02-05 10:48:23 +00:00
parent 70e7d72bf2
commit b2328c4f47
5 changed files with 29 additions and 12 deletions

View file

@ -185,7 +185,7 @@ class GP(Model):
from ..plotting.matplot_dep import models_plots
models_plots.plot_fit_f(self,*args,**kwargs)
def plot(self, *args):
def plot(self, *args, **kwargs):
"""
Plot the posterior of the GP.
- In one dimension, the function is plotted with a shaded region
@ -204,7 +204,7 @@ class GP(Model):
"""
assert "matplotlib" in sys.modules, "matplotlib package has not been imported."
from ..plotting.matplot_dep import models_plots
models_plots.plot_fit(self,*args)
models_plots.plot_fit(self,*args,**kwargs)
def _getstate(self):
"""