Search code examples
plotexportpngmaxima

Export png file from plot2d in wxMaxima


Is there a way to export graphics of functions that results from (wx)plot2d in (wx)Maxima?


Solution

  • Just add png_file as an argument to plot:

    plot2d(sin(x),[x,0,2], [png_file, "test_sin.png"]);
    

    pdf_file, ps_file and svg_file are also supported.