LerBron

clc,clear,clf

x1=0:0.1:10;

y1=x1.*exp(-3*x1);

h1=plot(x1,y1,\'r--\')

set(h1,\'linewidth\',6);

x2=0:0.1:2*pi;

y2=cos(0.5+3*sin(x2)./(1+x2.*x2));

hold on

h2=plot(x2,y2,\'k-*\');

set(h2,\'Markersize\',3);

legend(\'y1=x1.*exp(-3*x1)\',\'y2=cos(0.5+3*sin(x2)./(1+x2.*x2))\');

 

分类:

技术点:

相关文章:

  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2021-05-28
  • 2021-12-21
  • 2021-12-21
  • 2022-01-06
  • 2021-08-04
猜你喜欢
  • 2021-12-14
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-21
  • 2021-12-21
  • 2021-12-21
相关资源
相似解决方案