Maxima: 3D プロットの例
3Dプロット時の geomview,openmath, openmathでps指定,gnuplotでPS指定の
出力例を示します.
geomview
plot3d(10*sin(x)*sin(y)/x/y,[x,-2*%pi,2*%pi],[y,-2*%pi,2*%pi],
[plot_format, geomview]);
|
openmath
plot3d(sin(x)*sin(y)/x/y,[x,-2*%pi,2*%pi],[y,-2*%pi,2*%pi],
[plot_format, openmath]);
|
openmath -> ps
plot3d(sin(x)*sin(y)/x/y,[x,-2*%pi,2*%pi],[y,-2*%pi,2*%pi],
[plot_format, openmath], [psfile,"openmath.ps"]);
|
gnuplot -> ps
plot3d(sin(x)*sin(y)/x/y,[x,-2*%pi,2*%pi],[y,-2*%pi,2*%pi],
[plot_format, gnuplot], [psfile,"gnuplot.ps"]);
|