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!