Pulling Vectors From 3D Matrix Based on Indicies
Mostrar comentarios más antiguos
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?
Respuestas (1)
A = rand(30,40,10) ;
iwant = squeeze(A(13,33,:))
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!