how to make Huffman code manually without the Matlab Huffman function
Mostrar comentarios más antiguos
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;
Respuestas (1)
Walter Roberson
el 24 de Mzo. de 2017
0 votos
File Exchange has some Huffman contributions.
Categorías
Más información sobre Large Files and Big Data en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!