/text.html
使用 text 函数 , 可以在坐标系的指定位置绘制文字 ;
在 坐标系的
(0.5,0.5)
点位置 , 绘制积分符号文字 , 该文字是 latext 数学公式 ;
代码示例...:
% latext 数学公式 , 积分
str = '$$\int_{0}^{2} x^2\sin(x)dx$$';
% 在 0.5 0.5 位置绘制字符串
% 'Interpreter', 'latex...---
参考文档 : https://ww2.mathworks.cn/help/matlab/ref/annotation.html
使用 annotation 函数绘制箭头 :
% latext 数学公式...Latex 数学公式
% 后两个参数是固定写法
text(0.5, 0.5, str, 'Interpreter', 'latex');
% 绘制一个箭头 ,
% 'X', [0.2, 0.5],...表示 x 轴方向 , 从 0.2 到 0.5
% 'Y', [0.2, 0.5], 表示 y 轴方向 ,, 从 0.2 到 0.5
annotation('arrow', 'X', [0.2, 0.5