-
win_endcut
基于短时窗能量的自适应语言端点检测程序。具有一定的抗噪声能力。输入WAV文件名,输出端点检测结果,包括数据和画图显示。(Adaptive voice activitie detection program,resistant to noice .Input with the name of wave file,output with the VAD result ,including data and figure display.)
- 2014-01-08 22:47:51下载
- 积分:1
-
rls
最小二乘法在自适应方面的应用,并且该算法能过快速收敛(I CAN PLAY)
- 2012-02-27 18:16:08下载
- 积分:1
-
sai_rm77
LDPC码的完整的编译码,用MATLAB编写的遗传算法路径规划,解耦,恢复原信号。( Complete codec LDPC code, Genetic algorithms using MATLAB path planning, Decoupling, restore the original signal.)
- 2017-03-08 16:10:32下载
- 积分:1
-
FFT变换及频谱分析
Matlab编程实现FFT变换及频谱分析的程序代码,能出结果,不错(Matlab Programming FFT transform and spectral analysis of the program code to the results, it is true)
- 2020-06-29 23:40:02下载
- 积分:1
-
walker
一个有趣的人走动程序,很有趣的。。。。。。(One interesting people walking program, very interesting. . . . . .)
- 2010-12-26 18:37:30下载
- 积分:1
-
2idt
ITD进行模态识别,得到模态参数,ITD 法是一种单输入多输出、基于包含系统参数的自由振动方程识别结构参数的方法,(ITD modal identification, get the modal parameters.ITD method is a single-input multiple-output, based on the structure of the free vibration equation parameters include system identification method parameters,)
- 2013-12-02 16:15:38下载
- 积分:1
-
MBI_Brain
本Matlab程序对脑区域图像进行分析,计算脑体积。(The Matlab program to analyze images of brain regions, calculated brain volume.)
- 2010-05-05 23:48:25下载
- 积分:1
-
shiyan
数字信号处理实验报告实验一信号、系统及系统响应实验二用FFT作谱分析实验三用双线性变换法设计IIR数字滤波器(Digital signal processing lab report experiment a signal, system and system response for the second experiment with the FFT spectrum analysis experiment with three bilinear transform IIR digital filter design)
- 2011-05-16 21:12:55下载
- 积分:1
-
coordinate
实现测量坐标转换,主要有三参数、四参数、六参数、七参数以及二维坐标与三维坐标的转换(Measuring coordinate conversion, there are three parameters, four parameters, six parameters, seven parameters, and the conversion of two-dimensional coordinates and 3D coordinates)
- 2020-07-03 09:40:02下载
- 积分:1
-
Blocks
clc
close all
clear all
I=imread( desert.jpg )
[r c]=size(I)
bs=16 Block Size (8x8)
nob=(r/bs)*(c/bs) Total number of 8x8 Blocks
Dividing the image into 8x8 Blocks
kk=0
for i=1:(r/bs)
for j=1:(c/bs)
Block(:,:,kk+j)=I((bs*(i-1)+1:bs*(i-1)+bs),(bs*(j-1)+1:bs*(j-1)+bs))
end
kk=kk+(r/bs)
end
Accessing individual Blocks
figure imshow(Block(:,9,1)) This shows u the fist 8x8 Block in a figure window
figure imshow(Block(:,:,2))
- 2013-03-17 15:01:05下载
- 积分:1