Pulling Vectors From 3D Matrix Based on Indicies
Ältere Kommentare anzeigen
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?
Antworten (1)
A = rand(30,40,10) ;
iwant = squeeze(A(13,33,:))
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!