Borrar filtros
Borrar filtros

How do i quantize data with N levels?

35 visualizaciones (últimos 30 días)
Deniz Bozdogan
Deniz Bozdogan el 3 de Nov. de 2021
Comentada: Mathieu NOE el 19 de Nov. de 2021
I have the following code and have to quantize Y with N=8 levels in the uniform quantizer where Y=X1+X2 and x1∈[0,4] x2∈[-2,0]. Can you help me about it? Thank you in advance.
close all;
clear all;
rand('seed', sum(100*clock));
x1 = 0 + (4-0) .* rand(1000000,1);
x2 = -2 + (0-(-2)) .* rand(1000000,1);
y=x1+x2;

Respuesta aceptada

Mathieu NOE
Mathieu NOE el 5 de Nov. de 2021
hello
here an example of code and results
N = 1000;
x = 1:N-1;
signal = sin(x*2*pi/N);
nbits = 3; % 3 bits = 8 qantization levels
qLevels = 2^nbits ;
% The next step will be to scale your signal to have the same magnitude as your number of bits.
signalMin = min(signal);
signalMax = max(signal);
scalingFactor = (signalMax-signalMin)/qLevels;
signal_scaled = signal / scalingFactor ;
% This gives you a signal ranging from -8 to 8.
% I will use round(), then scale the signal back to its original magnitude
signal_scaled = round(signal_scaled);
signal_scaled = signal_scaled * scalingFactor;
plot(x,signal,x,signal_scaled);

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by