-
speechdtwprotected
dynamic time warp Matlab speech recognition source code DTW (dynamic time consolidation), the Speech Recognition Research counterparts can be downloaded
- 2009-05-07 03:41:34下载
- 积分:1
-
gquadnd
由matlab编译,一个很好的计算多重积分的模块。(From matlab compiler, a good module for calculating multiple integrals)
- 2013-08-25 16:47:27下载
- 积分:1
-
generate_monthly_statistics
calipso二级气溶胶AOD月平均廓线(Monthly Average Profile of Calipso Secondary Aerosol AOD)
- 2020-07-04 20:20:02下载
- 积分:1
-
The_elements_of_statistical_learning
Classic data mining book
- 2010-11-15 09:45:08下载
- 积分:1
-
Calculation of intensities and peak pressure
超声换能器线性阵列声强和声压峰值计算案例(calculations of intensities and peak pressure of the linear arrays)
- 2018-01-31 21:40:07下载
- 积分:1
-
DifferentialEquations
用matlab解决微分方程中的问题,提供一些实例和代码,希望大家支持(Using matlab to solve differential equations of the problem, provide some examples and code, I hope you will support)
- 2009-05-06 21:49:52下载
- 积分:1
-
plane-rotation
Advanced correlation filter synthesis algorithms to achieve rotation invariance are described. We use a specified form for the filter as the rotation invariance constraint and derive a general closed-form solution for a multiclass rotation-invariant filter that can recognize a number of different objects. By requiring the filter to minimize the average correlation plane energy, we produce a multiclass rotation invariant (RI) RI-MACE filter, which controls correlation plane sidelobes and improves discrimination against false targets. To improve noise performance, we require the filter to minimize a weighted sum of correlation plane signal and noise energy. Initial test results of all filters are provided
- 2013-08-07 19:49:12下载
- 积分:1
-
segyinput
Reads segy data into a structured array format in Matlab workspace
- 2011-10-23 19:08:57下载
- 积分:1
-
ScaleandImageDescription
包括显著图经典文章Saliency, Scale and Image Description(2001),及其实现程序(Including a significant figure classic article Saliency, Scale and Image Description (2001), and its implementation program)
- 2014-12-25 10:55:33下载
- 积分: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