I need to arrange the elements as shown in the figure. Can anyone suggest an algorithm for this arrangement of elements?

조회 수: 1 (최근 30일)
I am currently working in FE analysis. I need to arrange the elements as shown in the figure. Can anyone suggest an algorithm for this arrangement of elements?

채택된 답변

darova
darova 2021년 8월 25일
Use flipud
A = reshape(1:12,[3 4]);
A'
ans = 4×3
1 2 3 4 5 6 7 8 9 10 11 12
flipud(A')
ans = 4×3
10 11 12 7 8 9 4 5 6 1 2 3

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by