Sort vector based on another - How?
조회 수: 1 (최근 30일)
이전 댓글 표시
So lets say I have a vector with distances ranging from 1 to 5 , whole numbers.
l = [ 5 3 2 1]
Associated with this vector are random integer values.
k = [ 2 3 4 1]
I want to be able to sort I and the k vectors follow....
so
l = [ 1 2 3 5]
k = [1 4 3 2]
How do I do this?
댓글 수: 0
채택된 답변
Walter Roberson
2025년 4월 29일
l = [ 5 3 2 1]
k = [ 2 3 4 1]
[l_sorted, l_sortidx] = sort(l);
k_sorted = k(l_sortidx);
l_sorted
k_sorted
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!