zy440458

scatter

x = linspace(0,3*pi,200);
y = cos(x) + rand(1,200);  
scatter(x,y)

在这里插入图片描述


plot

x = linspace(0,3*pi,200);
y = cos(x) + rand(1,200);  
plot(x,y,\'o\')

在这里插入图片描述


分类:

技术点:

相关文章:

  • 2021-12-02
  • 2021-04-12
  • 2021-11-16
  • 2021-06-02
  • 2021-08-05
  • 2021-12-15
  • 2021-07-23
  • 2021-12-11
猜你喜欢
  • 2021-04-30
  • 2022-01-08
  • 2021-06-04
  • 2021-12-09
  • 2022-12-23
  • 2021-09-29
  • 2021-08-09
相关资源
相似解决方案