Difference in Wavelet decompostion coefficients
古いコメントを表示
Hi,
I have a signal of size 36X1 and I get different values of the approximate coefficients when I use the GUI in wavelet toolbox vs when I script it. For the script I have tried both the dwt and the wavedec function with wavetype as 'db4'. I have tried different levels of decomp too but the approximate coefficients at level 'x' that I export from the GUI is not the same as the one I get from the script? Any help would be appreciated.
Thanks
Romendra
I retrieved the approximate coefficients from the script using the appcoef() function
採用された回答
その他の回答 (1 件)
Wayne King
2012 年 9 月 26 日
Hi Romendra, The export approximations from the GUI is not the approximation coefficients, it is a projection onto a particular subspace. You can get this at the command line with wrcoef() with the 'a' type.
x = randn(36,1);
[C,L] = wavedec(x,2,'db4');
xapp2 = wrcoef('a',C,L,'db4',2);
カテゴリ
ヘルプ センター および File Exchange で AI for Signals and Images についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!