Calculating the SNR of quantized audio

조회 수: 1 (최근 30일)
Vinci
Vinci 2018년 8월 5일
편집: Vinci 2018년 8월 6일
I'm trying to calculate the SNR of my original audio signal and the quantization signal from 16 bits down to 1 bit.
My original audio signal is:
signal = getaudiodata(recording, 'int16');
I'm using bitshift to remove the LSB:
quantsignal = bitshift(quantsignal, -1);
How to I now calculate the SNR of signal and quantsignal?

답변 (1개)

Image Analyst
Image Analyst 2018년 8월 5일
Looks like you're not scaling back up when you divide by 2. You're not just removing bits, you're cutting the amplitude in half also.
Why not just use bitset() to start clearing bits?
  댓글 수: 2
Vinci
Vinci 2018년 8월 5일
I've tried replacing:
% Remove LSB using division
quantsignal = quantsignal/2;
With:
% Remove LSB using bitshift
quantsignal = bitshift(quantsignal, -1);
But still not working correctly.
Image Analyst
Image Analyst 2018년 8월 5일
Why not try imquantize()?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Simulation, Tuning, and Visualization에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by