Plotting

Plotting

Maxima.plot2dMethod.
plot2d(m::MExpr, kwargs...)

Plot a Maxima expression using Gnuplot.

Examples

julia> plot2d(m"sin(x)", x=(1,2), title="Sine Wave") # Plot sine wave
source
Maxima.plot3dMethod.
plot3d(m::MExpr, kwargs...)

Make 3d plot of the expression m

source
contour_plot(m::MExpr, kwargs...)

Make a contour plot of the expression m

source
kwarg_convert(kwarg)

Convert keyward arguments into the form of Maxima keyword arguments

Ex:

x = (1, 2) => [x, 1, 2] xlabel="x axis" => [xlabel, "x axis"]

source