how can i convert Sinusoidal Signal to digital code(encoding)

2 vues (au cours des 30 derniers jours)
HYUNJUN KIM
HYUNJUN KIM le 13 Oct 2016
Hi! I'm beginner in matlab. I have code below
clear all
A = 2;
f0 = 2.4;
Ts = 0.01;
t = [0:Ts:1];
omega = 2*pi*f0;
phi = 60*pi/180;
xt = A*cos(omega*t+phi);
figure(1)
plot(t, xt); grid;
xn = xt;
figure(2)
stem(xn)
Trial>> partition = [-2:0.5:2];
Trial>> codebook = [-2.25:0.5:2.25];
Trial>> [index quants] = quantiz(xt, partition, codebook);
I want convert this quantization code to digital code. for example
this code encode quantization to digital code. 3bit resolution
please help. thank you

Réponses (1)

MANI KANDAN
MANI KANDAN le 10 Mai 2019
tsest

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by