matlab code for finding MSE and PSNR between two audio signals
Afficher commentaires plus anciens
I want matlab code for MSE and PSNR between two audio signals..please help me..
Réponses (1)
Shivaputra Narke
le 30 Jan 2014
0 votes
Hope this helps.....
[R C]=size(signal1); err = (((signal1-signal2).^2)/(R*C)); % size of signals must be same length MSE=sqrt(err); PSNR = 20*log10(MAXVAL/MSE); % MAXVAL= 255 in case of 8 bit signal
3 commentaires
ayesha jabeen
le 4 Oct 2016
i am getting this error while calculating MSE

iqbal maulana
le 17 Déc 2017
size of y1 and y2 is not same
Sheikh Thanbir Alam
le 19 Juil 2020
But Max value for image is 255?? So, shoud we use 255 in audio signal???
Catégories
En savoir plus sur Audio I/O and Waveform Generation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!