Range intersection

Mathematical intersection of range composed of a union of intervals

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

Purpose: Range/interval intersection

A and B two ranges of closed intervals written
as vectors [lowerbound1 upperbound1 lowerbound2 upperbound2]
or as matrix
[lowerbound1, lowerbound2, lowerboundn;
upperbound1, upperbound2, upperboundn]
A and B have to be sorted in ascending order

out is the mathematical intersection A n B

EXAMPLE USAGE:
>> out=range_intersection([1 3 5 9],[2 9])
out = [2 3 5 9]
>> out=range_intersection([40 44 55 58], [42 49 50 52])
out = [42 44]

引用

Xavier Xavier (2026). Range intersection (https://jp.mathworks.com/matlabcentral/fileexchange/31753-range-intersection), MATLAB Central File Exchange. に取得済み.

謝辞

ヒントを得たファイル: Interval merging

一般的な情報

MATLAB リリースの互換性

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

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

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

Major modification and bug fixing

1.9.0.0

Correction of an error in the input description

1.0.0.0