Pulling Vectors From 3D Matrix Based on Indicies
Show older comments
I have a 10 page 3D matrix that I'm looking to pull vectors from specific indicies. For example i=13 and j=33. The end result from each sampling should be a column vector. What is the best way to accomplish this?
Answers (1)
A = rand(30,40,10) ;
iwant = squeeze(A(13,33,:))
Categories
Find more on MATLAB 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!