getting examples running

This commit is contained in:
Max Zwiessele 2013-06-05 13:58:55 +01:00
parent 2e5e8ac026
commit 7238b62f4a
3 changed files with 7 additions and 7 deletions

View file

@ -273,8 +273,8 @@ class MRD(model):
else:
return pylab.gcf()
def plot_X_1d(self):
return self.gref.plot_X_1d()
def plot_X_1d(self, *a, **kw):
return self.gref.plot_X_1d(*a, **kw)
def plot_X(self, fignum=None, ax=None):
fig = self._handle_plotting(fignum, ax, lambda i, g, ax: ax.imshow(g.X))