mu law compressor function
1 view (last 30 days)
Show older comments
i have sawtooth function when i compress the function using this function
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/192257/image.png)
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 Comments
Accepted Answer
madhan ravi
on 22 Oct 2018
Edited: madhan ravi
on 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)
0 Comments
More Answers (1)
ahmad ramadan
on 22 Oct 2018
1 Comment
madhan ravi
on 22 Oct 2018
Edited: madhan ravi
on 22 Oct 2018
Anytime ;) I used dot in front of multiplication and division that's it which is know as element wise operation
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!