How to select specific entries of a matrix?

2 views (last 30 days)
How to select elements of matrix at the following rows and columns
1,4,7,10,13,16,...
In other words, select elements of matrix at first row and first column, fourth row and fourth column, seventh row and seventh column and so on...

Accepted Answer

Matt J
Matt J on 31 Aug 2021
A(1:3:end,1:3:end)

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!