【基础教程】Matlab绘制箭头坐标轴图形

​1.调用annotation函数绘制二维箭头annotation函数用来在当前图形窗口建立注释对象(annotation对象)(高级!也就是会覆盖其他图形)

它的调用格式如下: 

(1) annotation(annotation_type)  % 以指定的对象类型,使用默认属性值建立注释对象。

(2) annotation('line',x,y)       % 建立从(x(1), y(1))到(x(2), y(2))的线注释对象。 

(3) annotation('arrow',x,y)      % 建立从(x(1), y(1))到(x(2), y(2))的箭头注释对象。

(4) annotation('doublearrow',x,y)% 建立从(x(1), y(1))到(x(2), y(2))的双箭头注释对象。

(5) annotation('textarrow',x,y)  % 建立从(x(1),y(1))到(x(2),y(2))的带文本框的箭头注释对象。

(6) annotation('textbox',[x y w h])  % 建立文本框注释对象,左下角坐标(x,y),宽w,高h。

(7) annotation('ellipse',[x y w h])  % 建立椭圆形注释对象。

(8) annotation('rectangle',[x y w h])% 建立矩形注释对象。 

(9) annotation(figure_handle,…)     % 在句柄值为figure_handle的图形窗口建立注释对象。 

(10) annotation(…,'PropertyName',PropertyValue,…)  % 建立并设置注释对象的属性。

(11) anno_obj_handle = annotation(…)  % 返回注释对象的句柄值。 

注意:annotation对象的父对象是figure对象,上面提到的坐标x,y是标准化的坐标,即整个图形窗口(figure对象)左下角为(0,  0),右上角为(1,  1)。宽度w和高度h也都是标准化的,其取值在[0,  1]之间。

例:

annotation('arrow',[0 5],[0 10])  %加上箭头

2.在legend()和text()函数中使用特殊字符

左箭头 \leftarrow

右箭头 \rightarrow

上箭头 \uparrow

但是只有这三种,有局限性

3.调用quiver()函数绘制箭头 quiver函数

调用格式如下:

quiver(x,y,u,v) 

quiver(u,v) 

quiver(...,scale) 

quiver(...,LineSpec) 

quiver(...,LineSpec,'filled') 

quiver(axes_handle,...) 

h = quiver(...) 

 

x=-10:0.05:100;y1=chi2pdf(x,1);y2=chi2pdf(x,4);y3=chi2pdf(x,10);y4=chi2pdf(x,20);plot(x,y1);hold on;plot(x,y2);plot(x,y3);plot(x,y4);axis([0 50 0 0.35]);annotation('arrow',[0.25 0.15],[0.8 0.75]);text(8,0.3,'\fontsize{15}n=1');annotation('arrow',[0.3 0.2],[0.5 0.45]);text(11,0.18,'\fontsize{15}n=4');annotation('arrow',[0.4 0.3],[0.35 0.30]);text(17,0.11,'\fontsize{15}n=10');annotation('arrow',[0.6 0.5],[0.25 0.20]);text(30,0.065,'\fontsize{15}n=20');

【基础教程】Matlab绘制箭头坐标轴图形_第1张图片

4.带箭头的坐标系

t=0:pi/50:4*pi;y=exp(-2*t).*sin(3*t);plot(t,y,'r','linewidth',1.5)shift_axis_to_origin(gca)box off

【基础教程】Matlab绘制箭头坐标轴图形_第2张图片

往期回顾>>>>>>

【优化求解】模拟退火遗传实现带时间窗的车辆路径规划问题

【优化算法】遗传算法求最短路径

【优化问题】遗传算法求最值

【基础教程】MATLAB导出高清晰图片

【优化问题】基于栅格地图——遗传算法的机器人最优路径规划

资源获取

 

公众号中回复“QQ”加入QQ群;回复“微信”加入微信群;回复“投稿”与大家分享智慧;回复“资源获取”免费下载该资源

 

你可能感兴趣的:(【基础教程】Matlab绘制箭头坐标轴图形)