Mathematica中文论坛-非官方

标题: matlab 多条曲线的legend,标注,不同颜色,粗线 [打印本页]

作者: meatball1982    时间: 2016-2-3 09:01
标题: matlab 多条曲线的legend,标注,不同颜色,粗线
这是我比较喜欢的一种方法来表示不同曲线。在同一个图中,可以通过色彩和粗细同时表达,当然,还有marker.
用for 可以把标注加在一个结构体当中。



  1. clear all
  2. clc
  3. clf

  4. x=1:0.2:(2*pi);

  5. n_line=9;
  6. col_mm=jet(9);
  7. hold on
  8. for i=1:n_line
  9.     y=sin(x+i*pi/10)+exp(x/5);
  10.     plot(x,y,'.-','Color',col_mm(i,:),'LineWidth',2+0.5*i);
  11.     str{i}=['Lin=',mat2str(i*0.01)];
  12. end
  13. legend(str,'location','northwest')
  14. hold off

  15. %% logs
  16. % mod : 03-Feb-2016 09:00:23
  17. % mod by : mm
复制代码







欢迎光临 Mathematica中文论坛-非官方 (http://ilovemathematica.com/) Powered by Discuz! X3.2