
MATLAB
文章平均质量分 55
七百源
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【郭彦甫】P6高阶绘图
关于对数图像 title('Plot'); subplot(2,2,2); semilogx(x,y); title('Semilogx'); subplot(2,2,3); semilogy(x,y); title('Semilogy'); subplot(2,2,4); loglog(x,y); title('LogLog'); 一图多轴 x = 0:0.01:20; y1 = 200*exp(-0.05*x).*sin(x); y2 = 0.8*exp(-0.5*x).*sin(10*x); [A原创 2021-04-26 16:10:47 · 207 阅读 · 0 评论 -
【郭彦甫】P5初阶绘图
plot matlab在画图的时候回自动清除之前的图 可以使用hold on hold off来解决这个问题 Plot style 设置曲线风格 legend 给曲线命名原创 2021-04-24 11:39:42 · 181 阅读 · 0 评论 -
【郭彦甫】P3 变量与档案存取
数据类型 char ASCII转换原创 2021-02-20 19:44:54 · 120 阅读 · 0 评论