从wxMaxima中的plot2d导出png文件

时间:2017-08-04 01:14:36

标签: plot export png maxima

有没有办法在(wx)Maxima中导出由(wx)plot2d产生的函数图形?

2 个答案:

答案 0 :(得分:1)

您可以将图表另存为pdf文件。如果使用wxmaxima,请使用菜单栏中的绘图功能。选择Gnuplot作为绘图格式。绘制绘图后,单击绘图并从编辑菜单中选择另存为。选择pdf。

答案 1 :(得分:1)

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.