---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-5ebe9c1d9c70> in <module>()
1 alge_daphnie=fuzz.read_model('../dyn_fuzzy/alge_daphnie.fis') # includes the growth of the daphnie using the alge
----> 2 alge_daphnie.show_model()
/home/ralf/master/samt2/fuzzy/src/Pyfuzzy.so in Pyfuzzy.fuzzy.show_model (Pyfuzzy.c:32758)()
/usr/lib/python2.7/dist-packages/matplotlib/pyplot.pyc in contour(*args, **kwargs)
2764 ax.hold(hold)
2765 try:
-> 2766 ret = ax.contour(*args, **kwargs)
2767 finally:
2768 ax.hold(washold)
/usr/lib/python2.7/dist-packages/matplotlib/__init__.pyc in inner(ax, *args, **kwargs)
1812 warnings.warn(msg % (label_namer, func.__name__),
1813 RuntimeWarning, stacklevel=2)
-> 1814 return func(ax, *args, **kwargs)
1815 pre_doc = inner.__doc__
1816 if pre_doc is None:
/usr/lib/python2.7/dist-packages/matplotlib/axes/_axes.pyc in contour(self, *args, **kwargs)
5642 self.cla()
5643 kwargs['filled'] = False
-> 5644 return mcontour.QuadContourSet(self, *args, **kwargs)
5645 contour.__doc__ = mcontour.QuadContourSet.contour_doc
5646
/usr/lib/python2.7/dist-packages/matplotlib/contour.pyc in __init__(self, ax, *args, **kwargs)
1422 are described in QuadContourSet.contour_doc.
1423 """
-> 1424 ContourSet.__init__(self, ax, *args, **kwargs)
1425
1426 def _process_args(self, *args, **kwargs):
/usr/lib/python2.7/dist-packages/matplotlib/contour.pyc in __init__(self, ax, *args, **kwargs)
861 self._transform = kwargs.get('transform', None)
862
--> 863 self._process_args(*args, **kwargs)
864 self._process_levels()
865
/usr/lib/python2.7/dist-packages/matplotlib/contour.pyc in _process_args(self, *args, **kwargs)
1443 self._corner_mask = mpl.rcParams['contour.corner_mask']
1444
-> 1445 x, y, z = self._contour_args(args, kwargs)
1446
1447 _mask = ma.getmask(z)
/usr/lib/python2.7/dist-packages/matplotlib/contour.pyc in _contour_args(self, args, kwargs)
1538 warnings.warn('Log scale: values of z <= 0 have been masked')
1539 self.zmin = z.min()
-> 1540 self._contour_level_args(z, args)
1541 return (x, y, z)
1542
/usr/lib/python2.7/dist-packages/matplotlib/contour.pyc in _contour_level_args(self, z, args)
1187 warnings.warn("Contour levels are not increasing")
1188 else:
-> 1189 raise ValueError("Contour levels must be increasing")
1190
1191 def _process_levels(self):
ValueError: Contour levels must be increasing