Clear Filters
Clear Filters

cropping the matrix size

9 views (last 30 days)
Sasi umaiyal
Sasi umaiyal on 1 Dec 2016
Commented: Sasi umaiyal on 1 Dec 2016
i have a matrix of 200*200*200 and i want to convert this into 26*200*200. is this possible?

Accepted Answer

Adam
Adam on 1 Dec 2016
Yes, just use colon notation
doc colon
e.g.
myMatrix = myMatrix( 1:26, :, : )
but obviously it depends what you want the 26 to be and if you are just discarding the other 174 or whether you are expecting to do some kind of maths to combine 200 down into 26 which would be a differentproblem entirely.

More Answers (0)

Categories

Find more on Data Type Conversion 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!