how to make Huffman code manually without the Matlab Huffman function
古いコメントを表示
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;
回答 (1 件)
Walter Roberson
2017 年 3 月 24 日
0 投票
File Exchange has some Huffman contributions.
カテゴリ
ヘルプ センター および File Exchange で Large Files and Big Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!