• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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

  一.坐标轴上标注有导数的情况 

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

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

示例:

 figure(1)
 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\')

 

 

clc;clear;close all;
figure(1)
x = 0:0.01:6*pi;
y = sin(x)+2*cos(0.5*x);
plot(x,y)
%xlabel(\'$\dot{\theta}(t)$\',\'Interpreter\',\'latex\')
xlabel(\'$$\dot{\theta}(t)$$\',\'Interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
% ylabel(\'$\dot{\gamma}(t)$\',\'Interpreter\',\'latex\');
ylabel(\'$$\dot{\lambda}$$\',\'interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
title(\'\gamma\',\'FontName\',\'Times New Roman\',\'FontSize\',20)

好像用one dollar 也可,two dollars 也可,

 

 

 

 

 

 

 

 

 

 

 

 

二. 图例中有导数的情况

参考:http://blog.sina.com.cn/s/blog_97db34e80101cneb.html

clc;clear;close all;
figure(1)
x = 0:0.01:6*pi;
y = sin(x)+2*cos(0.5*x);
plot(x,y,\'b-.\',\'linewidth\',1.5)
%xlabel(\'$\dot{\theta}(t)$\',\'Interpreter\',\'latex\')
xlabel(\'$$\dot{\theta}(t)$$\',\'Interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
% ylabel(\'$\dot{\gamma}(t)$\',\'Interpreter\',\'latex\');
ylabel(\'$$\dot{\lambda}$$\',\'interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
title(\'\gamma\',\'FontName\',\'Times New Roman\',\'FontSize\',20)
latexStr=[\'$$m \ddot y = C_D \cdot {1 \over 2} \rho {\dot y}^2 \cdot A$$\'] ;
lgh=legend(latexStr,\'FontSize\',20);
set(lgh,\'interpreter\',\'latex\');
axis([0 19 -3 3])

图例中有参数导数形式的表达

 

 

将纵坐标标注转正的情况:

参考: http://blog.sina.com.cn/s/blog_97db34e80101cnlx.html

clc;clear;close all;
figure(1)
x = 0:0.01:6*pi;
y = sin(x)+2*cos(0.5*x);
plot(x,y,\'b-.\',\'linewidth\',1.5)
%xlabel(\'$\dot{\theta}(t)$\',\'Interpreter\',\'latex\')
xlabel(\'$$\dot{\theta}(t)$$\',\'Interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
% ylabel(\'$\dot{\gamma}(t)$\',\'Interpreter\',\'latex\');
ylabel(\'$$\dot{\lambda}$$\',\'interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20);
ylabel(\'$$\dot{\lambda}(t)$$\',\'interpreter\',\'latex\',\'FontName\',\'Times New Roman\',\'FontSize\',20,\'rotation\',pi/2,\'HorizontalAlignment\',\'right\');

其中的rotation就是旋转纵坐标标注,pi/2是旋转角度,HorizontalAlignment表示对齐方式,这里right表示靠左排列。

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
DelphiIdhttp.Get方法发布时间:2022-07-18
下一篇:
DesignPattern----19.Behavioral.Iterator.Pattern(DelphiSample)发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap