Swap the First and Last Column (CODY)

function B = swap_ends(A)
X = A(:,end);
C = A(:,1);
A(:,1) = X;
A(:,end) = C;
B = A;
end
How do I reduce it into a length of 7? (Top length is 7).

Answers (1)

Categories

Find more on Argument Definitions in Help Center and File Exchange

Asked:

on 7 Jun 2021

Answered:

on 7 Jun 2021

Community Treasure Hunt

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

Start Hunting!