A axocurve corresponds to the "curve" function
of axodraw, i.e. is connects a set of points by polynomials
with proper boundary conditions. Do not mix it up with
the curve function
of aximate. Here is an example:
axocurve({"points" => [[[-100,-50],[-100,20]], [[0,30]], [[10,20],[30,-20]], [[50,70],[100,-70]] ], "width" => [[1],[4]], "color" => "Green"});Note that axocurve only works if the curve can be represented as an injective function f(x)=y, i.e. no loops etc are allowed.
|