-
matrics_multiply
Matlab中优化多个矩阵相乘以提高计算效率的源代码。(Optimize a number of Matlab matrices to improve the computational efficiency of the source code.)
- 2009-05-05 11:40:39下载
- 积分:1
-
figureextract
matlab环境下计算MFCC参数(mel倒谱参数),lpcc参数(线性预测倒谱)和pitch(基因)(calculate mfcc lpcc pitch )
- 2009-05-08 18:49:25下载
- 积分:1
-
Cambridge.Press.Numerical.Recipes.3rd.Edition
Numerical RecipeS is a series of text and reference books on "the art of scientific computing" that is famous for its engaging text and lucid mathematical and algorithmic explanations
- 2013-04-14 12:01:40下载
- 积分:1
-
isecs10wp143
The Wavelet Decomposition And Reconstruction
Based on The Matlab
- 2013-02-13 06:13:22下载
- 积分:1
-
atan_cordic
atan function using cordic
- 2010-10-15 19:10:09下载
- 积分:1
-
falspos
Demonstration of Root Finding using False Position
- 2010-10-26 18:31:37下载
- 积分:1
-
generateGmatrix
这是国标数字电视地面传输中生成矩阵的生成程序,只要按照MATLAB的格式输入国标附录1中的数据,就可以生成完整的G矩阵(This is the national standard of digital TV terrestrial transmission matrix generated in the generation process, as long as the input in accordance with the format of MATLAB Appendix 1 GB of data, we can generate the complete G matrix)
- 2008-05-15 09:52:57下载
- 积分:1
-
FunctionMatlab
独家奉献!FSO通信性能分析中,Gamama-Gamma 分布的随机数的产生方法,并通过理论PDF和CDF得到了验证;同时还包含point error 的随机数(Exclusive dedication! In FSO communication performance analysis, the method of generating random numbers of Gamama-Gamma distribution is proved by theory, PDF and CDF)
- 2021-05-10 07:48:34下载
- 积分:1
-
matched-filter
matched filter implemented in matl ab
- 2013-03-06 17:23:52下载
- 积分:1
-
MatchFilterLFM
高分辨率雷达 距离向压缩算法滤波器设计 三种方法 全面设计(clc
clear all
close all
2013年9月28日
---------------参数----------
Tr=42e-6
fs=9.5e6
K=0.7e11
Nfft=2048
-------------匹配滤波 时域生成--------------
t=(-Tr/2+1/fs:1/fs:Tr/2-1/fs)
w = kaiser(length(t),2.5)
w=w
w = ones(1,length(t))
ht1=w.*exp(-1i*pi*K*t.^2)
ht2=w.*exp(1i*pi*K*t.^2)
hf1=fft(ht1,Nfft)
hf2=fft(ht2,Nfft)
figure
subplot(211)
plot(abs(hf1))
title( 匹配滤波器1 幅频响应 )
subplot(212)
plot(phase(hf1))
title( 匹配滤波器1 相位 )
figure
subplot(211)
plot(abs(hf2))
title( 匹配滤波器2 幅频响应 )
)
- 2013-10-12 22:32:06下载
- 积分:1