How to get specific data from Double?
Afficher commentaires plus anciens
I have double (i,j,n): A(1:50,1:50,1:250) in other words 2-dimensional vector (i,j) that changes n times. How can I get from this a new (1-dimensional vector B(:)) vector B(25,25,1:250) that will give me 250 times of data in point (25,25)??
Réponses (1)
Wayne King
le 15 Mar 2012
Do you just mean?
B = squeeze(A(25,25,:));
1 commentaire
Zach
le 15 Mar 2012
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!