view util/snr.m @ 188:2f5ce7c8792a danieleb

removed check for wLength as not necessary.
author daniele@danieleb.com
date Wed, 15 Feb 2012 11:02:45 +0100
parents 88578ec2f94a
children
line wrap: on
line source
function x = snr(s,r)
% SNR calculates the signal-to-noise ratio between the signal s and its
% representation r defined as:
% SNR = 20*log10(||s||_2/||s-r||_2)
err = s-r;
x = mag2db(norm(s(:))/norm(err(:)));