How to calculate Signal to noise ratio of multiple signals?
4 views (last 30 days)
Show older comments
i have (.dat) file consisting of 24 signals of size 2040*24 and i need to calculate the SNR of each signal. How can i do that? Here is my attached file.
0 Comments
Answers (1)
KSSV
on 3 Sep 2020
[m,n] = size(data) ; % where data is 2040*24 matrix
S = zeros(n,1) ;
for i = 1:n
S(i) = snr(data(:,i)) ;
end
See Also
Categories
Find more on Multirate Signal Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!