-
audio_denoising
主要用于对语音信号进行阈值消噪处理,包括软硬阈值消噪(audio signal threshold denoising )
- 2009-04-29 09:26:00下载
- 积分:1
-
parameter_classic
在MATLAB环境下用经典参数法求高斯信道的参数(In the MATLAB environment parameters method with the classical Gaussian channel parameters)
- 2009-05-31 13:25:16下载
- 积分:1
-
pd_ca
峰值检测和ca—cfar相结合的检测器的matlab仿真(Peak detection and ca-cfar combined detector matlab simulation)
- 2011-12-08 16:01:32下载
- 积分:1
-
desing
Matlab+PID控制资料
基于MATLAB的PID控制器设计(PID controller design Matlab+PID control data based on MATLAB)
- 2015-03-14 12:41:30下载
- 积分:1
-
fdtd2D
2-D FDTD TE code with PML absorbing boundary conditions
Program author: Susan C. Hagness
- 2010-07-13 23:59:14下载
- 积分:1
-
eval
一个ever的代码,是一个代码质量还不错,值得学习(An ever code is a code quality is also good, it is worth learning)
- 2010-01-13 17:29:05下载
- 积分:1
-
mangyuanfenli
主程序为mybss.m和fastica1.m。经过调试能够成功运行,和lmd一起使用效果不错,可以实现各频率的分离。(The main program is mybss.m and fastica1.m. After debugging can be run successfully, and lmd use with good results, the separation can be achieved for each frequency.)
- 2013-12-19 21:05:06下载
- 积分:1
-
计算振动信号各种参数的实验程序
本程序是计算振动信号各种参数的实验程序。
主要功能是计算均值、标准差、方差、偏斜度、峭度、峰峰值、方根幅值、平均幅值、峰值、波形指标、峰值指标、脉冲指标、裕度指标。(This procedure is experimental procedure of the calculation of the various parameters of the vibration signal. The main function is to calculate the mean, standard deviation, variance, skewness, kurtosis, peak-to-peak, the square root of the amplitude, average amplitude, peak waveform indicators and peak indicators, pulse indicators, margin index.)
- 2020-07-01 04:20:01下载
- 积分:1
-
Dbscan
经典密度聚类算法,自己编写的,正用着的,简单易操作,立马可以用(the clustering algrithm of DBCAN )
- 2014-03-24 17:31:38下载
- 积分:1
-
Chien搜索BCH译码算法
说明: %inverstable
inverse_tb = gf(zeros(1, t+1), m);
for i=1:t+1,
inverse_tb(i) = alpha^(-i+1);
end;
%chien's search
lambda_v = zero;
accu_tb=gf(ones(1, t+1), m);
for i=1:n,
lambda_v=lambda*accu_tb';
accu_tb = accu_tb.*inverse_tb;
if(lambda_v==zero)
error(1,n-i+1)=1;
else
error(1,n-i+1)=0;
end
end
found = find(error(1,:)~=0)
- 2021-04-23 11:08:47下载
- 积分:1