getOnOffIds(IsData)

バージョン 1.1.0.0 (1.66 KB) 作成者: David J. Mack
Computes the start/end ids of 'true'-events in a logical vector.
ダウンロード: 27
更新 2016/12/22

ライセンスの表示

This is a utility function to compute the start and end ids of 'on' events in a logical array, e.g. 00011011110 -> 4/5 & 7/10. This can be used simply for compression (e.g. if you want to store the events of some timeseries) or for further processing, where logical indexing does not seem to do the job. Although it uses FIND it is rather fast on larger arrays.
This function is part of a set of functions to convert between logical and number indexing in arrays:
GETONOFFIDS: www.mathworks.com/matlabcentral/fileexchange/58983
ONOFF2LOGICAL: www.mathworks.com/matlabcentral/fileexchange/58984
BRIDGEIDGAPS: www.mathworks.com/matlabcentral/fileexchange/58985

引用

David J. Mack (2024). getOnOffIds(IsData) (https://www.mathworks.com/matlabcentral/fileexchange/58983-getonoffids-isdata), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R10
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersMatrix Indexing についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

[MOD] Simplified the start/end condition checks.
[MOD] Removed the checks for all-false/-true arrays and made them implicit. This sacrifices some speed in these special cases but makes the function faster in any other case.

1.0.0.0

Added links