代码搜索:识别算法

找到约 10,000 项符合「识别算法」的源代码

代码结果 10,000
www.eeworm.com/read/154330/11970910

txt 小波谱分析mallat算法经典程序.txt

clc;clear; %% 1.正弦波定义 f1=50; % 频率1 f2=100; % 频率2 fs=2*(f1+f2); % 采样频率 Ts=1/fs; % 采样间隔 N=120; % 采样点数 n=1:N; y=sin(2*pi*f1*n*Ts)+sin(2*pi*f2*n*Ts); % 正弦波混合 figure(1) plot(y); ti
www.eeworm.com/read/254284/12150098

txt c++中蚁群优化算法的实现 .txt

C++中蚁群优化算法的实现 #include #include #include #define frand() ((double)rand()/(double)RAND_MAX) #define MAXLONG (2147483647) double * pso_optimization(int s,