代码搜索:分析算法

找到约 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