Signal Processing Time in Matlab_Discrete Wavelet Transform
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Does any one have a code on how to detremine the processimg timw\e in Discrete Wavelet Transform
0 Commenti
Risposte (1)
Tushar Behera
il 30 Gen 2023
Hi john,
I assume that you want to know the time taken by the Discrete Wavelet Transform for
You can determine the processing time of a Discrete Wavelet Transform (DWT) in MATLAB by using the "tic" and "toc" functions. The "tic" function starts a timer, and the toc function stops the timer and returns the elapsed time in seconds. Here's an example:
tic
load noisdopp;
[cA,cD] = dwt(noisdopp,'sym4');
toc
I hope this solves your query.
Regards,
Tushar
Vedere anche
Categorie
Scopri di più su Wavelet Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!