Optimization of Wavelet Analysis - Code Execution Time
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Chaitanya Mallela
2020년 7월 13일
cwt function is taking more computations try using cwtfilterbank with reduced VoicesperOctave to speed up the execution.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!