-
wavelets
Wavelets Compression
- 2015-02-18 03:39:11下载
- 积分:1
-
MATLAByingyongchengxujiekouzhinan
详细介绍了matlab应用程序接口的使用,书中对matlab应用程序接口中所提出的接口函数进行了详细的说明。(Details of the application interface using matlab, matlab book application program interface for the proposed interface functions in a detailed description.)
- 2011-07-04 21:41:04下载
- 积分:1
-
Statistics-Methods-and-Applications
Statistical Methods and Applications (SMA) is the official Journal of the Italian Statistical Society. This international journal fosters the development of statistical methodology and its applications in biological, demographic, economic, health, physical, social, and other scientific domains. In particular, the journal emphasizes investigations of methodological foundations and methods that have broad applications.
- 2013-12-14 19:26:54下载
- 积分:1
-
huffman
matlab实现huffman编码 1. norm2huff.m (encoder function)
2. huff2norm.m (decoder function)
3. frequency.m (private function)
4. huffcodes2bin.m (binary rapresentation of huffman codes)
5. huffman_bench1.m (benchmark)
6. huffman_demo1.m (demo file)
7. huffman_demo2.m (demo file)
8. huffman_test1.m (test file)
9. huffman_test2.m (test file)
10. huffman_docs.zip (documentation)
11. Disclamer.txt (this is the disclamer)(huffman coding matlab realize 1. norm2huff.m (encoder function) 2. huff2norm.m (decoder function) 3. frequency.m (private function) 4. huffcodes2bin.m (binary rapresentation of huffman codes) 5. huffman_bench1.m (benchmark ) 6. huffman_demo1.m (demo file) 7. huffman_demo2.m (demo file) 8. huffman_test1.m (test file) 9. huffman_test2.m (test file) 10. huffman_docs.zip (documentation) 11. Disclamer.txt (this is the disclamer))
- 2007-10-17 14:59:22下载
- 积分:1
-
Beampatterns
雷达/声纳正处理,常规巴特利特波束形成仿真。假设入射信号角度正横方向,M元接收阵对接收信号进行正负九十度的扫描。(Conventional beamforming for RADAR/SONAR. The source is supposed to be the broadband. there are M element array using for receiving.)
- 2010-10-26 08:32:23下载
- 积分:1
-
harr-transform
harr transform matlab code
- 2012-04-29 20:09:08下载
- 积分:1
-
Matlab7SimulinkUsingSimulink
matlab7.0的simulink工具包,包括很多事例
原版英文书(matlab7.0 the Simulink tool kits, including many examples of original English books)
- 2007-05-11 10:35:14下载
- 积分:1
-
pi4dqpsk
pi/4-dqpsk 调制解调 的 matlab 仿真,通过srrc滤波器实现16倍的上采样(pi/4-dqpsk modulation and demodulation matlab simulation, through srrc filter to achieve 16 times the sampling)
- 2021-01-11 09:28:50下载
- 积分:1
-
jwd_Distance
依据两个点的经纬度计算这两点在地球上距离的函数文件,误差很小(Calculated based on latitude and longitude of two points on Earth from these two points in the function file, the error is small)
- 2011-12-12 14:36:50下载
- 积分: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