How can I generate symmetric array?

조회 수: 3 (최근 30일)
Triveni
Triveni 2015년 12월 16일
답변: Walter Roberson 2015년 12월 16일
I have an array. and i want to write it symmetry
A(:,:,k) = [ 1 2 3 4 5 6 7 8 9 10];
I want to write it as
A(:,:,k) = [ 1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1];
for k=1:N
value of A should change according perms or permutation. because perms is limited to 10.
please help.

채택된 답변

Walter Roberson
Walter Roberson 2015년 12월 16일
Write the asymmetric matrix first, just the first half. Then
A = cat(3,A, A(:,:,end:-1:1));
This will put a reversed copy of A after A

추가 답변 (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