Organize the logic to transform given matrix into required

1 view (last 30 days)
Given
[1 5 4 5 7
2 5 5 5 8
3 5 6 5 9]
Required
[1 2 3
4 5 6
7 8 9]

Accepted Answer

Voss
Voss on 23 Jan 2022
A = [1 5 4 5 7; 2 5 5 5 8; 3 5 6 5 9]
A = 3×5
1 5 4 5 7 2 5 5 5 8 3 5 6 5 9
B = A.'; % transpose
B = B(1:2:end,:) % take every alternate row, starting with 1st
B = 3×3
1 2 3 4 5 6 7 8 9
Or:
B = A(:,1:2:end).' % take every alternate column, then transpose
B = 3×3
1 2 3 4 5 6 7 8 9

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!