Given a matrix, swap the 2nd & 3rd columns - MATLAB Cody - MATLAB Central

Problem 1321. Given a matrix, swap the 2nd & 3rd columns

Difficulty:Rate
If
a = [1 2 3 4;
1 2 3 4;
1 2 3 4;
1 2 3 4];
then the result is
ans = [1 3 2 4
1 3 2 4
1 3 2 4
1 3 2 4];
by swapping columns 2 and 3.

Solution Stats

52.03% Correct | 47.97% Incorrect
Last Solution submitted on Jan 04, 2025

Problem Comments

Solution Comments

Show comments
MATLAB Central 2024 In Review
...
Let's celebrate what made 2024 memorable! Together, we made big impacts, hosted...

Problem Recent Solvers1114

Suggested Problems

More from this Author13

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page