-
matlab-yinyue
学习matlab,用c语言读wav格式的必备资料;自己写的寻找一组数据的峰值点程序,提取信号包络的程序,小波工具箱(Learning matlab, using c language read wav format necessary information their search for a set of data written in the peak-point program, extract the signal envelope of the process, wavelet toolbox)
- 2009-12-03 14:19:14下载
- 积分:1
-
lcr2
并联有源共模电流抑制方法的matlab仿真,建立仿真模型,分析补偿特性(common mode current inhibition of Matlab simulation, simulation model building, analyzing characteristics compensation)
- 2007-03-27 10:58:03下载
- 积分:1
-
rotate
平移数组元素的实例程序。来自编程珠玑。非常有用。(rotate array, sample code from programming pearls.)
- 2011-11-02 00:35:08下载
- 积分:1
-
Untitled6
光纤光栅梳状滤波器相关matlab程序,对通信专业本科毕业论文很有帮助(Fiber grating comb filter correlation matlab procedures, communications professional undergraduate thesis helpful)
- 2013-10-16 16:16:05下载
- 积分:1
-
OFDM
OFDM调制与解调,其中数字调制方式为QPSK。(OFDM modulation and demodulation, the digital modulation method is QPSK.)
- 2020-07-02 06:20:02下载
- 积分:1
-
NDVI
基于matlab软件的遥感指数计算,NDVI,植被指数。
(Remote sensing index calculation based on MATLAB software, NDVI, vegetation index.
)
- 2017-03-18 10:35:28下载
- 积分:1
-
全面的粒子群与K均值聚类的混合算法matlab例程
随机调制信号下的模拟ppm,有CDF三角函数曲线/三维曲线图,wolf 方法计算李雅普诺夫指数,包括最后计算压缩图像的峰值信噪比和压缩效果的源码,matlab开发工具箱中的支持向量机,实现了图像的灰度化并进一步用于视频监视控。
- 2022-08-02 12:45:52下载
- 积分:1
-
svpwm
初步实现光伏并网的逆变器功能,输出很好的波形(The initial realization of photovoltaic inverter function, the output waveform is a good)
- 2013-08-27 10:44:18下载
- 积分:1
-
AnPAdaptivePThreshold
在传统canny边缘检测的基础上,进一步进行自适应阈值的边缘检测方法的研究,比传统的方法有很大的优越性(Traditional canny edge detection on the basis of further adaptive threshold edge detection method, there are a lot of advantages than traditional methods)
- 2013-05-18 09:47:06下载
- 积分:1
-
故障检测 免疫算法 源码
应用 MATLAB编写的 故障检测 的 免疫算法源程序。好用绝对!
clc;
clear all;
global popsize length min max N code;
N=12; % 每个染色体段数(十进制编码位数)
M=20; % 进化代数
popsize=20; %设置初始参数,群体大小
length=10; % length为每段基因的二进制编码位数
chromlength=N*length; %字符串长度(个体长度),染色体的二进制编码长度
pc=0.7; %设置交叉概率,本例中交叉概率是定值,若想设置变化的交叉概率可用表达式表示,或从写一个交叉概率函数,例如用神经网络训练得到的值作为交叉概率
pm=0.3; %设置变异概率,同理也可设置为变化的
bound={-100*ones(popsize,1),zeros(popsize,1)};min=bound{1};max=bound{2};
pop=initpop(popsize,chromlength);
- 2022-01-27 10:26:32下载
- 积分:1