-
OFDM_matlab
cornell大学一篇关于OFDM仿真的论文(含matlab程序)(cornell University, a paper on the OFDM simulation (with matlab program))
- 2010-09-03 23:34:14下载
- 积分:1
-
free
生成无尺度网络的matlab程序,就是速度慢了点哦!(Generate scale-free networks matlab process is slow point Oh!)
- 2008-03-12 07:31:33下载
- 积分:1
-
leaveoneout
留一交叉验证方法。在做分类器分类时,使用留一交叉验证方法对分类器性能进行评价(leave one out )
- 2020-07-04 13:40:02下载
- 积分:1
-
Engineering_Optics_With_Matlab_(World_Scientific_2
一本MATLAB在光学工程方面应用的好书(A MATLAB application in optical engineering books)
- 2010-11-03 20:41:00下载
- 积分:1
-
thecodeofmatlabformotor
MATLAB电机仿真精华50例,源代码
包括同步电机,异步电机和直流电机。
(MATLAB simulation of the essence of 50 cases of motor, the source code, including synchronous motors, induction motors and DC motors.)
- 2009-05-25 21:11:07下载
- 积分:1
-
Mvdr_Original
相控阵雷达处理MVDR 自适应算法 没有考虑宽带问题(MVDR adaptive algorithm)
- 2012-09-06 23:33:21下载
- 积分:1
-
matlab_fir
matlab设计各种滤波器的例子程序,包括带通、带阻、低通、高通,设计需要提供的参数均有注释说明(Design examples of various filters matlab procedures, including band pass, band stop, low pass, high pass, provided the design parameters are needed explanatory notes)
- 2014-02-05 20:01:31下载
- 积分:1
-
EKF程序代码
扩展卡尔曼滤波算法,经过测试可以使用,matlab程序(Extended Kalman filter algorithm)
- 2019-01-05 15:16:05下载
- 积分:1
-
FDTD1_9
FDTD for Wave equation3
- 2009-11-17 22:59:02下载
- 积分:1
-
3x3-neighbor-pixel
Description
All the filters have needed neighbor data the current pixel in the image,here this function(res_window=cover_window(how many neighbor value for row ,how many neighbor value for column ,input image) produce the result( res_window(row,col,total size))
input
inp_img=2d data(row * col)
w=cover size
w=[3 3] = 3x3 cover pixel generation
output
o_img=result 3d
o_img(w(1),w(2),r*col)
if
inp_img=[1 2 3 4 5 6 ]
w=[3 3]
Soloution
it will construct new image
new_img=[0 0 0 0 0 0 1 2 3 0 0 4 5 6 0 0 0 0 0 0]
result
o_img(:,:,1)=[0 0 0 0 1 2 0 4 5]
o_img(:,:,2)=[0 0 0 1 2 3 4 5 6]
finally
o_img(1:3,1:3,6)
example
a=imread( pears.png )
b=rgb2gray(a)
c=cover_window( b,[3 3]) 3x3 window construction
- 2014-10-24 17:14:14下载
- 积分:1