run length compression algorithm
조회 수: 13 (최근 30일)
이전 댓글 표시
How to apply run length compression and save compressed data by Run Length Coding in matlab?
댓글 수: 0
답변 (1개)
Samatha Aleti
2019년 7월 18일
Hi,
You can use the Run length Encoding function which is available in MATLAB File Exchange. Here is the link to download and use
Here is an example
X = [56 56 56 56 28 28 255 255 9 9 9];
Y = rle(X);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Denoising and Compression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!