Sorting specific rows with a specific column

조회 수: 4 (최근 30일)
Pushkar Mahajan
Pushkar Mahajan 2017년 6월 30일
댓글: Pushkar Mahajan 2017년 7월 3일
I would like to sort first 3 rows of a matrix A with column 2 and then next 3 rows without changing the first three rows again with column 2. eg, A = [1 6 50; 5 2 50; 7 1 50; 2 5 53; 5 1 53; 7 3 53] Later, with same logic, I would like to sort a matrix with 100 rows.

채택된 답변

Jan
Jan 2017년 6월 30일
편집: Jan 2017년 6월 30일
The question is not clear. What does "sort with column 2" mean? A guess:
A = [1 6 50; 5 2 50; 7 1 50; 2 5 53; 5 1 53; 7 3 53];
for k = 1:3:size(A, 1)
[dummy, index] = sort(A(k:k+2, 2));
A(k:k+2, :) = A(index + k - 1, :);
end
Please check if this produces the wanted output. If so, explain, if you need more speed.
  댓글 수: 3
Jan
Jan 2017년 6월 30일
I think the best web source for such questions is: https://www.mathworks.com/matlabcentral/answers/ :-)
After reading the Getting Started chapters of the documentation and seeing Matlab's Onramp, it helps do discuss such questions in the forum until you get familar with creating efficient algorithms. See also: https://www.mathworks.com/matlabcentral/answers/8026-best-way-s-to-master-matlab
Pushkar Mahajan
Pushkar Mahajan 2017년 7월 3일
Thanks Jan. I will go through the links.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by