I have a 1×16 array as follow :
A = 1×16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
And I want to rearrange it like :
A' = 4×4
16 12 8 4
15 11 7 3
14 10 6 2
13 9 5 1
Could some tell me how to do it by any method? thanks alot !!!

 채택된 답변

Voss
Voss 2022년 3월 21일
편집: Voss 2022년 3월 21일

0 개 추천

% A = [1 2 3 4
% 5 6 7 8
% 9 10 11 12]
% A = A.';
% A = reshape(A(end:-1:1),3,[])
A = [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
A = 1×16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
A = reshape(A(end:-1:1),4,[])
A = 4×4
16 12 8 4 15 11 7 3 14 10 6 2 13 9 5 1

댓글 수: 2

Anthony Chu
Anthony Chu 2022년 3월 21일
thanks!!!
Voss
Voss 2022년 11월 1일
You're welcome!

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

추가 답변 (2개)

Arif Hoq
Arif Hoq 2022년 3월 21일
편집: Arif Hoq 2022년 3월 21일

1 개 추천

A=[1 2 3 4 5 6 7 8 9 10 11 12];
B=flip(A) % flip
B = 1×12
12 11 10 9 8 7 6 5 4 3 2 1
out=reshape(B,3,4) % row number=3 and column number=4
out = 3×4
12 9 6 3 11 8 5 2 10 7 4 1
Sulaymon Eshkabilov
Sulaymon Eshkabilov 2022년 3월 21일

1 개 추천

A = [1 2 3 4
5 6 7 8
9 10 11 12];
B = sort(A(:), 'descend');
C= reshape(B, 3,4)
C = 3×4
12 9 6 3 11 8 5 2 10 7 4 1

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

릴리스

R2021a

질문:

2022년 3월 21일

댓글:

2022년 11월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by