
matlab
支点_305
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
matlab/简单的滤波程序
x_old = 1:100 y_old = sin(x_old)+sin(100*x_old) subplot(1,4,1) plot(x_old, y_old) x_new = 1:200 y_old = double(y_old) z_fft = fft(y_old,200) z_fft = fftshift(z_fft) subplot(1,4,2) plot(x_n原创 2016-05-13 22:55:21 · 1605 阅读 · 0 评论 -
matlab读取.off文件代码
代码如下: fid = fopen('fan.off','r'); if fid error('open faild!'); end string = fgetl(fid); num = fgetl(fid); count = sscanf(num,'%d %d %d'); numVertices = count(1); numFaces = count(2); vl转载 2016-05-20 15:54:05 · 2310 阅读 · 0 评论