Array indexing in matlab

2 views (last 30 days)
Christa Weber
Christa Weber on 13 Jan 2023
Edited: Voss on 13 Jan 2023
Starting with
>> z = reshape([1:1:30],6,5)'
z =
1 2 3 4 5 6
7 8 9 10 11 12
13 14 15 16 17 18
19 20 21 22 23 24
25 26 27 28 29 30
what is the one-line command to access access the variable z to get the result:
1 2 23 24
7 8 29 30

Accepted Answer

Voss
Voss on 13 Jan 2023
Edited: Voss on 13 Jan 2023
z = reshape(1:30,6,5).' % [] not necessary; 1:1:30 is the same as 1:30; .' is transpose, ' is complex conjugate transpose
z = 5×6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
[z([1 2],[1 2]) z([end-1 end],[end-1 end])]
ans = 2×4
1 2 23 24 7 8 29 30

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!