Intersect2

버전 1.0.0.0 (771 Bytes) 작성자: Suri Like
Finds the intersection (common elements) of several (more than two) arrays
다운로드 수: 1.7K
업데이트 2008/3/31

라이선스 없음

In MATLAB, there is a command called "intersect", which finds the set intersection (common elements) of two vectors. However, this command doesn't work if I want to compare more than two vectors and find out their intersection. Therefore, I decided to write this function which is called "intersect2". It can find the common elements of any number of 1D numeric arrays of the same or different sizes and returns an array consisting of only those elements.

INPUT:
The input variable "cell" has to be a cell array, with each cell occupied by an 1D numeric array. For example, if you want to find the intersection (common elements) of the following three arrays
a = [ 1 3 4 6 8 9 ];
b = [ 3 1 0 8 6 4 ];
c = [ 7 8 1 9 3 4 ];,
you need to first put all of them into a cell array, i.e.
cell = {a, b, c};
Then you could use "cell" as the input variable to this function, i.e.
result = intersect2(cell);

OUTPUT:
The output of this function is simply an array consisting of elements that are common to all the arrays stored in "cell". For the particular case in the example above, the output would be
result = [ 1 3 4 8 ];
Also note that the numbers in the result are sorted in ascending order.

인용 양식

Suri Like (2026). Intersect2 (https://kr.mathworks.com/matlabcentral/fileexchange/19359-intersect2), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Matrices and Arrays에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.0.0.0