Interval merging

Merging intervals in the bracket form

現在この提出コンテンツをフォロー中です。

A handily simple function for a merging task:

Given N input closed intervals in bracket form:
Ii := [left(i),right(i)], i = 1,2...,N (mathematical notation).

The set union{Ii) can be written as a canonical partition by intervals Jk; i.e., union{Ii) = union(Jk), where Jk are M intervals (with M<=N, so the partition is minimum cardinal), and {Jk} are disjoint to each other (their intersections are empty).

This function returns Jk = [lower(k),upper(k)], k=1,2,...M, in the ascending sorted order.

引用

Bruno Luong (2026). Interval merging (https://jp.mathworks.com/matlabcentral/fileexchange/24254-interval-merging), MATLAB Central File Exchange. に取得済み.

謝辞

ヒントを与えたファイル: Range intersection

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
1.2.0.0

Simplified engine for RangeIntersection

1.1.0.0

New feature, intersection of a set of interval-unions

1.0.0.0