how to make Huffman code manually without the Matlab Huffman function
Ältere Kommentare anzeigen
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;
Antworten (1)
Walter Roberson
am 24 Mär. 2017
0 Stimmen
File Exchange has some Huffman contributions.
Kategorien
Mehr zu Large Files and Big Data finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!