Flip matrix by every nth row

조회 수: 4 (최근 30일)
David du Preez
David du Preez 2017년 4월 12일
편집: Stephen23 2017년 4월 12일
I have a 121x14 matrix. I want to flip the first 11 rows vertically and repeat so on for the rest of the matrix. I know it is possible to flip an entire matrix using:
flipup(name)

채택된 답변

Stephen23
Stephen23 2017년 4월 12일
편집: Stephen23 2017년 4월 12일
This is MATLAB, so just generate the indices:
idx = reshape(flipud(reshape(1:121,11,11)),1,121);
mat(idx,:)
These indices only need to be generated once, and can be used multiple times.

추가 답변 (0개)

카테고리

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