Organize the logic to transform given matrix into required

1 visualizzazione (ultimi 30 giorni)
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]

Risposta accettata

Voss
Voss il 23 Gen 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

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by