how to make Huffman code manually without the Matlab Huffman function
Afficher commentaires plus anciens
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;
Réponses (1)
Walter Roberson
le 24 Mar 2017
0 votes
File Exchange has some Huffman contributions.
Catégories
En savoir plus sur Large Files and Big Data dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!