其他分享
首页 > 其他分享> > MATLAB绘图中参数导数的标注方法

MATLAB绘图中参数导数的标注方法

作者:互联网

参考: https://zhidao.baidu.com/question/519416083.html 

   

 xlabel('$\dot{x_j}(t)$','Interpreter','latex')  表示绘图标注参数字母有导数的情况

 其中 \theta  \lamada 等来表示原字母

 

示例:
figure(4)
x = 0:0.01:6*pi;
y = sin(x)+2*cos(0.5*x);
plot(x,y)
xlabel('$\dot{\theta}(t)$','Interpreter','latex');

ylabel('$\dot{\gamma}(t)$','Interpreter','latex');

title('\theta')

 

 

标签:latex,导数,绘图,MATLAB,Interpreter,theta,xlabel,dot
来源: https://www.cnblogs.com/csymemory/p/13761515.html