how to make Huffman code manually without the Matlab Huffman function
Show older comments
P = [0.25 0.2 0.2 0.2 0.1 0.05];
P = sort(P,'descend');
[D(1,:),L(1,:)]=sort(P,'descend');
n=6;
Answers (1)
Walter Roberson
on 24 Mar 2017
0 votes
File Exchange has some Huffman contributions.
Categories
Find more on Large Files and Big Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!