このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

描画の各軸のスケール/描画出力方法

プロットオプション ['same_xy, true], ['same_xyz, true] でスケールが揃う。

  • wxplot2d([parametric, cos(t), sin(t)], [t, 0, 2*%pi] , [same_xy, true]) ;
  • contour_plot(1/(1+x^2+y^2),[x,-3,3],[y,-3,3], [same_xy, true]);
  • plot3d(10/(1+x^2+y^2),[x,-3,3],[y,-3,3], [same_xyz, true]);

PNG出力は [png_file, ファイル] で次のようにする。

  • plot3d(10/(1+x^2+y^2),[x,-3,3],[y,-3,3], [same_xyz, true], [png_file, "maxima-graph-01.png"]);

他に:

  1. pdf_file
  2. ps_file
  3. svg_file