Effacer les filtres
Effacer les filtres

mu law compressor function

1 vue (au cours des 30 derniers jours)
ahmad ramadan
ahmad ramadan le 22 Oct 2018
Modifié(e) : madhan ravi le 22 Oct 2018
i have sawtooth function when i compress the function using this function
the matlab give me error
my code T = 10*(1/50); Fs = 10000; dt = 1/Fs; t = 0:dt:T-dt; x4 = sawtooth(2*pi*50*t);
Xc = (log(1 + 255*abs(x4)) / log(1+u)) * sign(x4);
  2 commentaires
ahmad ramadan
ahmad ramadan le 22 Oct 2018
u==255
madhan ravi
madhan ravi le 22 Oct 2018
see the answer below

Connectez-vous pour commenter.

Réponse acceptée

madhan ravi
madhan ravi le 22 Oct 2018
Modifié(e) : madhan ravi le 22 Oct 2018
T = 10*(1/50);
Fs = 10000;
dt = 1/Fs;
t = 0:dt:T-dt;
x4 = sawtooth(2*pi*50*t);
u=255
Xc = (log(1 + 255.*abs(x4)) ./ log(1+u)) .* sign(x4)

Plus de réponses (1)

ahmad ramadan
ahmad ramadan le 22 Oct 2018
may explain what you did
thaanx lot
  1 commentaire
madhan ravi
madhan ravi le 22 Oct 2018
Modifié(e) : madhan ravi le 22 Oct 2018
Anytime ;) I used dot in front of multiplication and division that's it which is know as element wise operation

Connectez-vous pour commenter.

Catégories

En savoir plus sur Low-Level File I/O dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by