• matlab画对数概率纸

    日期:2009-06-18 | 分类:matlab | Tags:matlab skills program

    clf

    % plot curves here

    ppp=[0.01 0.1 0.2 0.5 1 2 5 10 20 30 40 50 60 70 80 90 95 98 99 99.5 99.9];

    ppp_pos=norminv(ppp/100);

    set(gca,'xtick',ppp_pos)

    set(gca,'xticklabel',ppp)
    ...
  • 之三:(写于2006.11.19)
    [原创]提高matlab运行速度和节省空间的一点心得(之三)

    首先说说Matlab与其他语言的差异:例如对于C或者C++来说...
  • Regular Expression

    日期:2009-06-09 | 分类: | Tags:study program regexp

    Learned a little about RE, just some simple use. For detail of commands and complex use, refer to the lessons when use.

    A concise lesson is http://unibetter.com/deerchao/zhengzhe-biaodashi-jiaocheng-se.htm

    sth to be remember i...
  • matlab 学习技巧积累

    日期:2009-05-02 | 分类:matlab | Tags:matlab skills study program

    做风玫瑰图:Rose(theta) ;Rose(theta,x)其中x是把[0,2pi]区间分成多少份数。这个命令做出的图极轴坐标是落在该区域的累积量,如果要频率的话,可以用[x,y]=rose(theta),polar(x,y/length(theta)*100). 在rose命令中theta为极坐标。
    Polar和rose命令做的极坐标图都是90度在上,可用view(90,-90)调整。
    Axis([xmin xmax ymin ymax]),如果单独设置x轴可用 xlim(...

  • Vi Reference

    日期:2009-04-13 | 分类:Vi/Vim | Tags:vi skills study program editor

     

    Modes

    normal(command):

    insert

    Open/Quit

    vi –r filename

    recover file after crash

    vi –R filename

    read only mode

    vi +/s...
  • Emacs命令集

    日期:2009-03-01 | 分类:Emacs | Tags:emacs skills study program editor

    Emacs 启动:
    直接打emacs, 如果有X-windows就会开视窗. 如果不想用X 的版本,
    就用 emacs -nw (No windows)起动.
    符号说明
    C-X 表示按住CTRL键, 然後按X, 再把CTRL, X一起放开.
    M-X META META

    在没有META键的电脑上, M-X 等於先按 ESC键, 接著按 X键.
    Sun上面META键就是菱形的那个键.
    有些系统META键就是ALT...