原创 【MATLAB】2D plot双坐标

2019-8-25 16:47 1545 10 10 分类: 工业电子 文集: MATLAB
上一次讲了2D plot今天说一下2D plot双坐标。
例如:
  1. monthnum = 1:12;
  2. precip = [3.4 3.3 4.3 3.7 3.5 3.7 ...
  3. 3.4 3.4 3.4 3.9 4.0 3.8];
  4. temp = [16 25 40 48 59 70 ...
  5. 77 77 65 56 47 34];
  6. figure
  7. yyaxis left
  8. plot(monthnum,precip)
  9. xlabel('时间')
  10. ylabel('P数值')
  11. title('预测数据')
显示:


有时候,坐标轴上要显示很多的内容,就需要多坐标轴表示。
例如:
  1. monthnum = 1:12;
  2. precip = [3.4 3.3 4.3 3.7 3.5 3.7 ...
  3. 3.4 3.4 3.4 3.9 4.0 3.8];
  4. temp = [16 25 40 48 59 70 ...
  5. 77 77 65 56 47 34];
  6. figure
  7. yyaxis left
  8. plot(monthnum,precip)
  9. xlabel('时间')
  10. ylabel('P数值')
  11. title('预测数据')
  12. yyaxis right
  13. plot(monthnum,temp)
  14. ylabel('T数值')
显示:

作者: curton, 来源:面包板社区

链接: https://mbb.eet-china.com/blog/uid-me-3876349.html

版权声明:本文为博主原创,未经本人允许,禁止转载!

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
10
关闭 站长推荐上一条 /3 下一条