Unique value for each sequence of two corresponding variables

조회 수: 1 (최근 30일)
Ariane Moura
Ariane Moura 2021년 9월 26일
답변: Ariane Moura 2021년 9월 26일
Hi,
I want to find the unique values for a sequence in A and the value corresponding value in B. For example:
A = [ 1 1 1 2 2 1 1 1 3 3 2 2 2 3 3 3]
B = [ 7 7 7 9 9 7 7 7 7 7 9 9 9 7 7 7]
output
Aa= [1 2 3]
Bb = [7 9 7]
How can I achieve this?

채택된 답변

Jan
Jan 2021년 9월 26일
A = [ 1 1 1 2 2 1 1 1 3 3 2 2 2 3 3 3];
B = [ 7 7 7 9 9 7 7 7 7 7 9 9 9 7 7 7];
[Aa, iA] = unique(A, 'first');
Bb = B(iA);
Aa
Aa = 1×3
1 2 3
Bb
Bb = 1×3
7 9 7

추가 답변 (1개)

Ariane Moura
Ariane Moura 2021년 9월 26일
It works for my problem!!! Many thanks!!!

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by