data storage, reduce the repeated elements, recurrence
1 回表示 (過去 30 日間)
古いコメントを表示
if input is:
a = [5 5 1 6 6 6 4 4 2]
how to get the output as:
elements: [5 1 6 4 2]
recurrence: [2 1 3 2 1]
0 件のコメント
採用された回答
Stephen23
2017 年 8 月 25 日
編集済み: Stephen23
2017 年 8 月 25 日
That is called run length encoding. Download this:
Or search FEX yourself:
3 件のコメント
Jan
2017 年 8 月 25 日
@hamed: Click on the "Download" button on the top right to obtain the zip file, which contains the required C file. You need a C compiler to convert the C file to a mex function. Alternatively you can use the slower RunLength_M version.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!