A and B are coupled vectors. How can I get from A->A_new B-> B_new?
조회 수: 2 (최근 30일)
이전 댓글 표시
A = [0 1 2 3 4 8 3 4 5];
B = [0.1 0.2 0.2 0.3 0.4 0.2 0.3 0.5 0.5];
A_new = [0 1 2 3 4 8 5];
B_new = [0.1 0.2 0.2 0.6 0.9 0.2 0.5];
댓글 수: 0
채택된 답변
Guillaume
2016년 11월 17일
[A_new, ~, columns] = unique(A, 'stable') %stable optional if ordering does not matter
B_new = accumarray(columns, B).'
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!