Matlabe二维绘图

1. 绘图命令

plot     stem    line

2. 绘图修饰

坐标轴的调整:axis([xmin xmax ymin ymax])  ,      axis(str)

网格线的设置: grid on  ;   grid off

设置坐标轴的名称: xlabel   ylabel

设置标题: title

在图像中显示文字:用坐标轴(x,y)定位置      text(x,y,'string') 

                                     用鼠标定位置                        gtext('string')

图形标定与颜色条:  legend      ,    colorbar

使用绘图工具栏标注:  View  -->  Plot Edit Toordar

3. 填充图形的绘制    :      fill(X,Y,ColorSpec)

4. 多坐标系绘图与图形窗口的分割

图形叠印法 : hold on

子图的绘制 : subplot(3,4,1:2)

5. 特殊坐标的绘制

极坐标 : polar(theta,rho,LineSpec)

对数/半对数坐标的绘制 : 只 x 轴采用对数刻度   semilogx

                                              只 y 轴采用对数刻度   semilogy

                                            x y  轴都采用对数刻度   loglog

6. 特殊二维图形绘制

概率分布 : hist(y,n)

柱状图    : bar(X,Y) 

                     barh(X,Y)

面积图  : area(X,Y)

饼形图  : pie(X,explode)

 等高线图:contour(Z,n)

向量图  : compass(U,V)  用来做圆盘

                  feather  用来绘制羽毛图

7. 函数绘图  :   fplot(fun,limits,LineSpec)

8. 在工作空间直接绘图

9. 手工绘图

ginput 函数获取鼠标按键位置坐标,用 line 绘图。



你可能感兴趣的:(工作,String,工具,图形,fun,plot)