matlab绘图命令汇总
MATLAB绘图虽说⾮常简单,但是众多命令不好记忆,每次⽤到都要到⽹上查也⾮常⿇烦,到⼀个⽐较全的汇总,以后⽤到的时候直接来这⾥就⾏了。
a=linspace(1,2,10)
plot(a,'--pr','linewidth',1.5,'MarkerEdgeColor','r','MarkerFaceColor','m','MarkerSize',10)
legend('a','Location','best')
title('a','FontName','Times New Roman','FontWeight','Bold','FontSize',16)
xlabel('T','FontName','Times New Roman','FontSize',14)
ylabel('a','FontName','Times New Roman','FontSize',14,'Rotation',0)
axis auto equal
set(gca,'FontName','Times New Roman','FontSize',14)
1.曲线线型、颜⾊和标记点类型
plot(X1,Y1,LineSpec, …) 通过字符串LineSpec指定曲线的线型、颜⾊及数据点的标记类型。
线型颜⾊数据点标记类型
标识符意义标识符意义标识符意义
- 实线 r 红⾊ +  加号
-. 点划线 g 绿⾊ o  圆圈
-- 虚线 b 蓝⾊ *  星号
: 点线 c 蓝绿⾊ .  点
m 洋红⾊ x  交叉符号
y 黄⾊ square(或s) ⽅格
k ⿊⾊ diamond(或d) 菱形
w ⽩⾊ ^  向上的三⾓形
v  向下的三⾓形
>  向左的三⾓形
<  向右的三⾓形
pentagram(或p) 五边形
hexagram(或h) 六边形
2.设置曲线线宽、标记点⼤⼩,标记点边框颜⾊和标记点填充颜⾊等。
plot(…,’Property Name’, Property Value, …)
Property Name 意义选项
LineWidth 线宽数值,如0.5,1等,单位为points
MarkerEdgeColor 标记点边框线条颜⾊颜⾊字符,如’g’, ’b’等
MarkerFaceColor 标记点内部区域填充颜⾊颜⾊字符
MarkerSize 标记点⼤⼩数值,单位为points
3.坐标轴设置
用subplot函数范围设置:
a. axis([xmin xmax ymin ymax])设置坐标轴在指定的区间
b. axis auto 将当前绘图区的坐标轴范围设置为MATLAB⾃动调整的区间
c. axis manual 冻结当前坐标轴范围,以后叠加绘图都在当前坐标轴范围内显⽰
d. axis tight 采⽤紧密模式设置当前坐标轴范围,即⼀⽤户数据范围为坐标轴范围
⽐例:
a. axis equal 等⽐例坐标轴
b. axis square 以当前坐标轴范围为基础,将坐标轴区域调整为⽅格形
c. axis normal ⾃动调整纵横轴⽐例,使当前坐标轴范围内的图形显⽰达到最佳效果
范围选项和⽐例设置可以联合使⽤,默认的设置为axis auto normal
4.坐标轴刻度设置
set(gca, ’XTick’, [0 1 2]) X坐标轴刻度数据点位置
set(gca,'XTickLabel',{'a','b','c'}) X坐标轴刻度处显⽰的字符
set(gca,'FontName','Times New Roman','FontSize',14)设置坐标轴刻度字体名称,⼤⼩
‘FontWeight’,’bold’ 加粗 ‘FontAngle’,’italic’ 斜体
对字体的设置也可以⽤在title, xlabel, ylabel等中
5.图例
legend('a','Location','best') 图例位置放在最佳位置
6.更多的设置可以在绘图窗⼝中打开绘图⼯具,Inspector… 中查
Various line types, plot symbols and colors may be obtained with
PLOT(X,Y,S) where S is a character string made from one element
from any or all the following 3 columns:
b    blue      .    point              -    solid
g    green      o    circle          :    dotted
r    red          x    x-mark          -. dashdot
c    cyan      +    plus            -- dashed
m    magenta    *    star          (none)  no line
y    yellow        s    square
k    black      d    diamond
w    white      v    triangle (down)
^    triangle (up)
<    triangle (left)
>    triangle (right)
p    pentagram
h    hexagram
在使⽤Matlab时,经常需要将得到的数值表达成⼆维或三维图像。
plot(vector1,vector2)可以⽤来画两个⽮量的⼆维图,例如
x=1:0.1:2*pi;
plot(x,sin(x))可以画正弦函数在0-2pi的上的图像。
plot函数可以接⼀些参数,来改变所画图像的属性(颜⾊,图像元素等)。下⾯是⼀些属性的说明
b    blue(蓝⾊)      .    point(点)      -    solid(实线)
g    green(绿⾊)      o    circle(圆圈)    :    dotted(点线)
r    red(红⾊)        x    x-mark(叉号)    -.    dashdot (点画线)
c    cyan(墨绿⾊)    +    plus(加号)      --    dashed(虚线)
m    magenta(紫红⾊) *    star(星号)      (none) no line
y    yellow(黄⾊)    s    square(正⽅形)
k    black(⿊⾊)      d    diamond(菱形)
v    triangle (down)
^    triangle (up)
<    triangle (left)
>    triangle (right)
p    pentagram
h    hexagram
例如,plot(x,y,'.r')表⽰⽤点来画图,点的颜⾊是红⾊。
plot函数可以接⼀些参数,来改变所画图像的属性(颜⾊,图像元素等)。下⾯是⼀些属性的说明
b    blue(蓝⾊)      .    point(点)      -    solid(实线)
g    green(绿⾊)      o    circle(圆圈)    :    dotted(点线)
r    red(红⾊)        x    x-mark(叉号)    -.    dashdot (点画线)
c    cyan(墨绿⾊)    +    plus(加号)      --    dashed(虚线)
m    magenta(紫红⾊) *    star(星号)      (none) no line
y    yellow(黄⾊)    s    square(正⽅形)
k    black(⿊⾊)      d    diamond(菱形)
v    triangle (down)
^    triangle (up)
<    triangle (left)
>    triangle (right)
p    pentagram
h    hexagram
Example
x = -pi:pi/10:pi;
y = tan(sin(x)) - sin(tan(x));
plot(x,y,'--rs','LineWidth',2,...
'MarkerEdgeColor','k',...
'MarkerFaceColor','g',...
'MarkerSize',10)
xlabel('x');
ylabel('y');
·        ⽤Matlab画图时,有时候需要对各种图标进⾏标注,例如,⽤“+”代表A的运动情况,“*”代表B的运动情况。legend函数的基本⽤法是
LEGEND(string1,string2,string3, ...)
分别将字符串1、字符串2、字符串3……标注到图中,每个字符串对应的图标为画图时的图标。
例如:
plot(x,sin(x),'.b',x,cos(x),'+r')
legend('sin','cos')这样可以把"."标识为'sin',把"+"标识为"cos"
还可以⽤LEGEND(...,'Location',LOC) 来指定图例标识框的位置
这些是Matlab help⽂件。后⾯⼀段是对应的翻译和说明
'North'              inside plot box near top
'South'              inside bottom
'East'              inside right
'West'              inside left
'NorthEast'          inside top right (default)
'NorthWest          inside top left
'SouthEast'          inside bottom right
'SouthWest'          inside bottom left
'NorthOutside'      outside plot box near top
'SouthOutside'      outside bottom
'EastOutside'        outside right
'WestOutside'        outside left
'NorthEastOutside'  outside top right
'NorthWestOutside'  outside top left
'SouthEastOutside'  outside bottom right
'SouthWestOutside'  outside bottom left
'Best'              least conflict with data in plot
'BestOutside'        least unused space outside plot
'North'            图例标识放在图顶端
'South'            图例标识放在图底端
'East'              图例标识放在图右⽅
'West'              图例标识放在图左⽅
'NorthEast'      图例标识放在图右上⽅(默认)
'NorthWest      图例标识放在图左上⽅
'SouthEast'      图例标识放在图右下⾓
'SouthWest'    图例标识放在图左下⾓
(以上⼏个都是将图例标识放在框图内)
'NorthOutside'          图例标识放在图框外侧上⽅
'SouthOutside'        图例标识放在图框外侧下⽅
'EastOutside'          图例标识放在图框外侧右⽅
'WestOutside'          图例标识放在图框外侧左⽅
'NorthEastOutside'  图例标识放在图框外侧右上⽅
'NorthWestOutside' 图例标识放在图框外侧左上⽅
'SouthEastOutside'  图例标识放在图框外侧右下⽅
'SouthWestOutside' 图例标识放在图框外侧左下⽅
(以上⼏个将图例标识放在框图外)
'Best'                      图标标识放在图框内不与图冲突的最佳位置
'BestOutside'          图标标识放在图框外使⽤最⼩空间的最佳位置
还是⽤上⾯的例⼦
legend('sin','cos','location','northwest')可以将标识框放置在图的左上⾓。
Examples:
x = 0:.2:12;
plot(x,bessel(1,x),x,bessel(2,x),x,bessel(3,x));
legend('First','Second','Third');
legend('First','Second','Third','Location','NorthEastOutside')
b = bar(rand(10,5),'stacked'); colormap(summer); hold on
x = plot(1:10,5*rand(10,1),'marker','square','markersize',12,...
'markeredgecolor','y','markerfacecolor',[.6 0 .6],...
'linestyle','-','color','r','linewidth',2); hold off
legend([b,x],'Carrots','Peas','Peppers','Green Beans',...
'Cucumbers','Eggplant')
图形的控制与表现 (Figure control and representation)
MATLAB提供的⽤于图形控制的函数和命令:
axis: ⼈⼯选择坐标轴尺⼨.
clf:清图形窗⼝.
ginput:利⽤⿏标的⼗字准线输⼊.
hold:保持图形.
shg:显⽰图形窗⼝.
subplot:将图形窗⼝分成N块⼦窗⼝。
1.图形窗⼝(figure window)
(1). 图形窗⼝的创建和选择(Creating and selecting of figure window)
figure(n):⽤于为当前的绘图创建图形窗⼝,每运⾏⼀次figure就会创建⼀个新的图形窗⼝,n表⽰第n个
窗⼝,如果窗⼝定义了句柄,也可以⽤figure(h)将句柄h的窗⼝作为当前窗⼝。
clf :⽤于清除当前图形窗⼝中的内容。
shg :⽤于显⽰当前图形窗⼝。
(2). 在⼀个图形窗⼝中绘制多个⼦图形(Drawing several subfigures in a single window)
subplot(m,n,p):把窗⼝分成m×n个⼩窗⼝,并把第p个窗⼝当作当前窗⼝。
例:将4 个图形显⽰在同⼀个图形窗⼝中。
t=0:pi/20:2*pi; [x,y]=meshgrid(t);
subplot(2,2,1); plot(sin(t),cos(t)); axis equal
subplot(2,2,2); z=sin(x)+cos(y); plot(t,z); axis([0 2*pi –2 2])
subplot(2,2,3); z=sin(x).*cos(y); plot(t,z); axis([0 2*pi –1 1])
subplot(2,2,4); z=sin(x).^2-cos(y).^2; plot(t,z); axis([0 2*pi –1 1])
(3). 在⼀个已有的图形上绘图(Drawing a figure on the figure was existed)
hold on :在⼀个已有的图形上继续绘图;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。