If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2014-04-03
One more thing.
I think that in build3DPlot method ax.set_zlim(0, 1) z shouldn't be 0,1 but more something like this:
(z_min,z_max,z) = self.getValues(system.variables[z_name])
ax.set_zlim(z_min, z_max)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, see at http://pyfuzzy.sourceforge.net/doc/ipython/demo.html may be line "In [16]:" is what you want. (support for ipython/matplotlib is only in the svn repository).
Please add this new package to setup.py ;)
Thank you very much for this demo! :)
Last edit: Anonymous 2014-03-31
One more thing.
I think that in build3DPlot method ax.set_zlim(0, 1) z shouldn't be 0,1 but more something like this:
(z_min,z_max,z) = self.getValues(system.variables[z_name])
ax.set_zlim(z_min, z_max)
Thanks for your comments, it's now fixed in the svn repository.