Harmonic Analysis using wavelet

조회 수: 18 (최근 30일)
Ayman Esmat
Ayman Esmat 2012년 5월 19일
댓글: Ahmad Aldiab 2024년 4월 17일 11:47
Hello everybody, I'm studying harmonic analysis in an electric grid I designed on simulink. I only know one way to do that, which is by FFT (Fast fourier transform) which can be done from the power gui block.
I was wondering if anyone know who can I study harmonic analysis using wavelets in simulink, I can't find any way to do that. (I can't find any tool box for it)
N.B: I'm working on Matlab 2011..
Thanks,,,

채택된 답변

Wayne King
Wayne King 2012년 5월 19일
DSP System toolbox has dwt block to do the critically-sampled discrete wavelet transform. But no blocks for the nondecimated or CWT.
  댓글 수: 2
Ayman Esmat
Ayman Esmat 2012년 5월 19일
where can I find that?!
Thanks again,
Wayne King
Wayne King 2012년 5월 19일
It is in the DSP System Toolbox:
http://www.mathworks.com/help/toolbox/dsp/ref/dwt.html

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Madhura
Madhura 2013년 9월 24일
wavemenu is a command to find wavelet toolbax

NIKOLAY YAKOVENKO
NIKOLAY YAKOVENKO 2023년 2월 9일
편집: NIKOLAY YAKOVENKO 2023년 2월 9일
I designed and tested my own CWT (continuous wavelet transform) in Simulink. I do use it successfully.
First, I used these functions to get the wavelets I need, or create the matrix with my own wavelets.
fbMorlet = cwtfilterbank('SignalLength',100,'SamplingFrequency',10,'WaveletParameters',[3,9]);
[psi,freqs]=wavelets(fbMorlet');
Wavelets=transpose(psi);
Then I used the "Discrete FIR filter" block of DSP toolkit to convolute equal size samples of signal for example 100 samples to the same length wavelets, and then find the index of the frequency that gave the maximum. The "Discrete FIR filter" block of DSP toolkit does not allow the matrix of coefficient, so I had to reverse the inputs, i.e. I put the matrix of wavelets to the signal input of the block, and the signal chunk of 100 samples to the coefficient input. Then I shift the signal by one sample (therefore processing the old 99 samples plus one new, and let the process repeat. This way I search all the input signal for wavelet response sample by sample therefore performing a true CWT in continuos time!
  댓글 수: 1
Ahmad Aldiab
Ahmad Aldiab 2024년 4월 17일 11:47
is it possible to share your model please, thanks a lot

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by