Is it possible to pass Gnuplot.py some form of a Python lambda
expression? I'm looking to plot a variety of functions of 1 variable,
which I have lambda expressions for. All I need is basic 2D plotting
functionality beyond that.
Matt
From: Alan G I. <ai...@am...> - 2009-01-31 19:21:58
On 1/31/2009 2:05 PM Matt Ball apparently wrote:
> Is it possible to pass Gnuplot.py some form of a Python lambda
> expression? I'm looking to plot a variety of functions of 1 variable,
> which I have lambda expressions for. All I need is basic 2D plotting
> functionality beyond that.
A lambda expression creates a function instance.
You can pass it like any function. E.g.,
http://gnuplot-py.sourceforge.net/doc/Gnuplot/funcutils.html
Alan Isaac