Optimization of Wavelet Analysis - Code Execution Time
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
Could someone help me to understand why does it take so much time to execute the following piece of code:
tic
frange = [2 20]; % Frequency range I am interested
wname = 'mexh'; % Wavelet Name
C = 124; % number of sensors
S = 67534; % number of samples
data = randn(C,S); % Input Data
energy_mean = zeros(1,C);
f = scal2frq(1:500,wname,1/250); % Computing the Pseudo Frequency
indices = f >= frange(1) & f <=frange(2); % Finding the indices of frange
for c = 1:C % For each sensor data
x = data(c,:);
CWTcoeffs = cwt(x,1:500,wname); % compute coefficients
cfs = CWTcoeffs(indices,:).^2;
energy_mean(ch) = 10*log10(mean(mean(cfs,2))); % average power in db
end
toc
Elapsed time is 918.298398 seconds.
Any help is greatly appreciated to reduce the execution time. Thanks.
-Velu
0 Kommentare
Antworten (1)
Chaitanya Mallela
am 13 Jul. 2020
cwt function is taking more computations try using cwtfilterbank with reduced VoicesperOctave to speed up the execution.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Continuous Wavelet Transforms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!