close all
clear all
clc
%% 导入数据
signal=xlsread('原始信号.csv');
signal=signal(1:900)';
fs=900; % 样本个数
T = length(signal);% 样本长度
t = 1/fs:1/fs:1;
omega_freqs = t-0.5-1/T;
f_hat=fftshift(fft(signal));
%% SVMD
maxAlpha=20000; %compactness of mode
tau=0;%time-step of the dual ascent
tol=1e-6; %tolerance of convergence criterion;
stopc=4;%the type of stopping criteria
智能算法及其模型预测