matlab code for finding MSE and PSNR between two audio signals
3 views (last 30 days)
Show older comments
I want matlab code for MSE and PSNR between two audio signals..please help me..
0 Comments
Answers (1)
Shivaputra Narke
on 30 Jan 2014
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 Comments
Sheikh Thanbir Alam
on 19 Jul 2020
But Max value for image is 255?? So, shoud we use 255 in audio signal???
See Also
Categories
Find more on Audio I/O and Waveform Generation 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!