annotate util/snr.m @ 176:d0645d5fca7d danieleb

added MOCOD dictionary update
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Thu, 17 Nov 2011 11:17:44 +0000
parents 88578ec2f94a
children
rev   line source
daniele@162 1 function x = snr(s,r)
daniele@162 2 % SNR calculates the signal-to-noise ratio between the signal s and its
daniele@162 3 % representation r defined as:
daniele@162 4 % SNR = 20*log10(||s||_2/||s-r||_2)
daniele@162 5 err = s-r;
daniele@162 6 x = mag2db(norm(s(:))/norm(err(:)));