Could anyone help me how to extract different specific number of rows in a matrix.
조회 수: 3 (최근 30일)
이전 댓글 표시
I am a matrix of size A= rand(100,1)
I want to generate matrix by extracting 2 rows in interval of 5.
B=A([1:2,6:7,11:12,16:17,........,96:97],:).
Could anyone help me to write in the simplified form to execute in matlab.
댓글 수: 0
답변 (2개)
Walter Roberson
2021년 6월 25일
row_idx = reshape((1:5:100) + [0;1],1,[])
댓글 수: 3
Walter Roberson
2021년 6월 25일
?? row_idx is already a separate matrix. You take it and
B = A(row_idx,:);
Walter Roberson
2021년 6월 25일
For 2, 3, 4 of each group of 5,
row_idx = reshape((1:5:100) + [1;2;3],1,[])
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!