-
kalmanFilter
kalman滤波器一个matlab程序,用于处理语音信号。(a kalman filter matlab program for the treatment of voice signal.)
- 2007-11-16 00:49:40下载
- 积分:1
-
20091029
轴承故障诊断.rar轴承故障诊断.rar(damage detection)
- 2009-11-01 23:11:19下载
- 积分:1
-
MIMO_OFDM
很经典的mim-ofdm系统仿真,希望能帮到大家(MIMO-OFDM Simulator)
- 2011-07-16 21:46:17下载
- 积分:1
-
GPS_toolbox
GPS software toolbox for GPS receiver development
- 2008-07-16 16:52:35下载
- 积分:1
-
a-priori-snr
matlab code for wiener filter noise removal
- 2013-01-21 23:34:43下载
- 积分:1
-
RLC-Series-resonance-characteristics
用实验方法测试RLC串联谐振电路的幅频特性曲线。当正弦交流信号的频率f改变时,电路的感抗、容抗随之而变.取电路电压U0作为响应,当输入电压Ui幅值维持不变时,在不同信号频率的激励下,测出U0之值,用LabVIEW程序完成频谱分析和滤波,变换等信号处理,即可测出RLC串联电路的谐振频率,(Amplitude-frequency characteristics experimentally tested RLC series resonant circuit curve. When changing the frequency f of the sinusoidal AC signal, the circuit inductance, capacitance change with Take circuit voltage U0 as a response when the amplitude of the input voltage Ui unchanged, signals at different excitation frequencies, the measured value U0, the process is complete spectrum analysis using LabVIEW and filtering, transform signal processing, can be measured RLC series circuit resonant frequency,)
- 2013-11-26 15:06:31下载
- 积分:1
-
huffman
huffman编码在matlab中的实现(huffman coding
)
- 2012-12-01 22:10:26下载
- 积分:1
-
IMfluxmodel
IMfluxmodel INDUCTION MOTOR
- 2012-02-12 01:57:34下载
- 积分:1
-
nearest_neighbors
Nearest neighbors is a semi deconvolution algorithm. I m a newbie in matlab but I hope this helps somebody :)
- 2009-03-13 02:32:13下载
- 积分:1
-
output_of_DCT_in_image_fusion
u can calculate DCT
clc
inp = imread( Im1.jpg )
inp1 = imread( Im2.jpg )
A = double(inp(:,:,1))
B = double(inp1(:,:,1))
A1=double(blkproc(A,[8 8], dct2 ))
B1=double(blkproc(B,[8 8], dct2 ))
[r,c] = size(A1)
r1 = []
for i=1:r
for j=1:c
if A1(i,j) > B1(i,j)
r1(i,j)=A1(i,j)
else
r1(i,j)=B1(i,j)
end
end
end
r1= double(r1(:,:,1))
C=blkproc(r1,[8 8], idct2 )
round(C)
C1=idct2(r1)
figure
imshow(uint8(C))
figure
imshow(uint8(C1))
imwrite(uint8(C), dct8x8min.jpg )
- 2011-01-09 23:26:05下载
- 积分:1