-
AdapGA
自适应遗传算法,用于优化求解,线性非线性方程方程组,调了很久(Adaptive genetic algorithm for optimization solution, linear equations, nonlinear equations for a long time)
- 2014-10-20 10:24:57下载
- 积分:1
-
SPWMinverter
SPWM控制的逆变器simulink范例。通过更改开关的占空比来调节输出电压(Simulink example SPWM inverter control. By changing the switch duty cycle to regulate the output voltage)
- 2014-02-19 18:00:53下载
- 积分:1
-
mid_wave_remove
该函数为可用于对信号的中心消波的matlab函数(matlab function for the mid-wav romove of the signal)
- 2013-01-30 10:54:26下载
- 积分:1
-
vector_quantization
语音信号的矢量量化,其中vector_quantization.m为读取音频文件,转换成语音帧,求lpc及lsf参数以及进行矢量量化的主程序,a_lsf_conversion.m为主程序调用的lpc转lsf参数的子程序,INLS1.wav为音频文件。(Vector quantization of speech signals, wherein vector_quantization.m to read audio file, converted into speech frames, seeking lpc and lsf parameters and vector quantization of the main program, a_lsf_conversion.m main program calls a subroutine parameter lsf lpc turn, INLS1.wav as an audio file.)
- 2013-06-20 15:36:15下载
- 积分:1
-
SVM支持向量机SMO训练算法
根据SMO作者论文的伪代码编写的SVM训练算法,支持更换核函数。带有两维的测试程序,按一定规则随机生成的两组散点,svm训练出最佳分类平面并画出分类平面。
- 2022-05-09 13:07:33下载
- 积分:1
-
Fast_Kalman_Filter
快速卡尔曼滤波的源程序,卡尔曼滤波是以最小均方误差为估计的最佳准则,来寻求一套递推估计的算法。(Fast Kalman filtering of source code, Kalman filter based on minimum mean square error for estimating the best criteria to search for a recursive estimation algorithm. )
- 2010-12-20 10:31:21下载
- 积分:1
-
PSO_GA_SVM
利用遗传算法GA和粒子群算法PSO对SVM进行优化(GA genetic algorithm and particle swarm optimization PSO to optimize the SVM)
- 2021-03-16 16:59:22下载
- 积分:1
-
mallat
小波谱分析mallat算法经典程序
MALLET分解算法(圆周卷积的快速傅里叶变换实现)
(Algorithm for spectral analysis mallat small program MALLET classic decomposition algorithm (circular convolution of the fast Fourier transform))
- 2011-10-11 16:56:38下载
- 积分:1
-
Time-SeriesModelforWirelessFadingChannelsinisotrop
这篇文章为随即和非随机的散射环境中造成的信封衰落提供了一个AR模型。它展示了至少需要一个二阶AR过程去建立一个伏在接收信封内在的阻尼正弦自动/交叉相关函数的模型。通过对模拟值的比较得到使用模型可以得到与理论值近似的值。模型基于的仿真过程被用来与JACK仿真器在随机分散事件中作比较。(his work presents an autoregressive (AR) model
for fading envelope influenced by isotropic and non-isotropic
scattering environments. It is shown that at least a second order
AR process is required to model the damped sinusoidal auto/cross
correlation function inherent in the complex received envelope.
The comparison of statistics of the simulation trace obtained
using the model shows good agreemeqt with the theoretical
values. The model based simulation procedure is compared to
the Jake s simulator for isotropic scattering case and is shown
to exhibit an order of magnitude smaller time complexity. )
- 2010-06-29 18:15:56下载
- 积分:1
-
fractal
matlab程序画图,常见分形图,function cantor(A,B)
c=1
p=0
figure
hold on
plot([A(2) B(2)],[A(1) B(1)], r* )
while norm(A(1,:)-B(1,:))>=1
C=[] D=[]
for i=1:size(A,1)
a=A(i,:)+(B(i,:)-A(i,:))/3
b=A(i,:)+2*(B(i,:)-A(i,:))/3
C=[C A(i,:) b]
D=[D a B(i,:)]
end
A=C
B=D
p=p+1 (matlab program drawing, common fractal images
function cantor(A,B)
c=1
p=0
figure
hold on
plot([A(2) B(2)],[A(1) B(1)], r* )
while norm(A(1,:)-B(1,:))>=1
C=[] D=[]
for i=1:size(A,1)
a=A(i,:)+(B(i,:)-A(i,:))/3
b=A(i,:)+2*(B(i,:)-A(i,:))/3
C=[C A(i,:) b]
D=[D a B(i,:)]
end
A=C
B=D
p=p+1 )
- 2013-03-02 09:54:38下载
- 积分:1