m_eh_62
Member level 2

I use wavelet Transform and decomposed a signal then I use some detail coefficient and reconstruct the signal:
the main signal sample frequency is 260Hz
what is the reconstructed signal samplinf frequency?
the main signal interval time is 20 second and the sampling frequency is 260Hz
I want to convert the New signal numeric interval to the time
so I need to the samplinf frequency of this signal (that differ from the main signal)
How can I calcualte this sample frequency?
the main signal sample frequency is 260Hz
what is the reconstructed signal samplinf frequency?
the main signal interval time is 20 second and the sampling frequency is 260Hz
Code:
[C,L]=wavedec(signal,8,'db4');
[d1,d2,d3,d4,d5,d6,d7,d8]=detcoef(C,L,[1,2,3,4,5,6,7,8]);
a5=appcoef(C,L,'db4',5);
C1=[a5;d5;d4;d3];
L1=[length(a5);length(d5);length(d4);length(d3);length(cleanecg)];
New signal=waverec(C1,L1,'db4');
I want to convert the New signal numeric interval to the time
so I need to the samplinf frequency of this signal (that differ from the main signal)
How can I calcualte this sample frequency?