Averaging and plotting cwt matrix
1 次查看(过去 30 天)
显示 更早的评论
I have a 45 * 513 *52 matrix that represents 52 cwt coefficient matrix with a morl non-complex wavelet. I really need to collapse these into an average or rms in order to get an 'average' to plot a scalogram. I am having so much trouble. I seem to be able to get the RMS, but then the plot makes no sense, so I am thinking I have not got the RMS right. Can anyone help? thanks! Here is the code for RMS I've used. None of the plots have been of any use!
c=cwt(mean(Data,2),Scales,WaveletName,'yaxix');
c=zeros(45,513,52);
for i=1:52;
for j=1:513
c(:,j,i)=cwt(Data(j,i),Scales,WaveletName);
end
end
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!