multiIntersect

Version 1.0.2 (1,54 KB) von Iman
this function finds the common elements between all the vector arrays included in the input cell.
39 Downloads
Aktualisiert 10. Okt 2018

Lizenz anzeigen

[commonElements, isCommon] = multiIntersect(x)

this function finds the common elements between all the vector arrays included in the input cell (x).

Each vector array in x has an optional length. The outputs:
1) commonElements includes the common elements between all the vector arrays.
2) isCommon is a cell with the same number of vector arrays as x, each of which has the same length as the corresponding vector array in x and indicates if the element is included in the commonElements or not.

Example)
x = { [11, 1, 19, 2, 11, 4, 6, 7, 9, 11] , [2, 1, 15, 5, 7, 11] , [1, 11, 7, 6, 9, 22] , [1, 7, 11] }
[commonElements, isCommon] = multiIntersect(x)

Answer)
commonElements = [1, 7, 11]
isCommon{1} = [1 1 0 0 1 0 0 1 0 1]
isCommon{2} = [0 1 0 0 1 1]
isCommon{3} = [1 1 1 0 0 0]
isCommon{4} = [1 1 1]

Kompatibilität der MATLAB-Version
Erstellt mit R2018b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Arithmetic Operations finden Sie in Help Center und MATLAB Answers
Tags Tags hinzufügen

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.2

description update!

1.0.1

description update!

1.0.0