Reverse matrix position
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello,
If i have
x =
1 2 3
4 5 6
7 8 9
10 11 12
I want it to be as
x =
10 11 12
7 8 9
4 5 6
1 2 3
Please help
채택된 답변
Nirmal Gunaseelan
2011년 6월 28일
Accessing row values in the reverse order will get you there:
x(end:-1:1,:)
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!