三维绘图可以分为两大类型:矩阵型和曲面型。

矩阵型

通常是声明一个矩阵,以矩阵的长宽为x,y范围,以矩阵里面的数值为高z, 使用plot3d(t1,t2,Z,alpha=a,theta=b)

  • t1:y轴方向的范围
  • t2:x轴方向的范围
  • Z:矩阵
  • alpha
  • theta参数用于指定角度,让图绘出来以某个特定的角度呈现出来。(optional)

    ->clear ->A=[1 2 5 4 3;0 3 2 8 6;2 4 6 7 5;2 3 4 3 1];
    ->t1=1:4; ->t2=1:5;
    //plot3d1与plot3d语法类似,能够嵌入多种颜色
    ->plot3d(t1,t2,A,alpha=45,theta=45);
    

mesh不需要边界声明, ->mesh(A);

Continue reading

下载imaxima   

http://members3.jcom.home.ne.jp/imaxima/Site/Download%20and%20Install_files/imaxima-imath-0.97a.tar.gz

./configure
make
sudo make install

进行安装。 默认将安装在/usr/local/share/emacs/site-lisp下,在~/.emacs下加入

(load "imaxima")

启动emacs,按M-x,键入imaxima运行maxima 但是进行运算时出错。

需要breqn094包,可从ftp://ftp.ams.org/pub/tex/breqn.zip下载,

cd /usr/share/texmf/tex/latex/
sudo unzip ~/Downloads/breqn.zip
sudo texhash

Continue reading

Author's picture

Guangchuang Yu

a senior-in-age-but-not-senior-in-knowledge bioinformatician

Postdoc researcher

Hong Kong