How can I index a 3D array like A(n,m,:) and get the result as a 1D array?
24 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
Assume we have a 3D array like this (image from the manual):
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/362005/image.gif)
In python/numpy I can something similar to
B = A(2,3,:)
which gets me B as a 1D array with: B = [A(2,3,1), A(2,3,2) , A(2,3,3)]
Can I do something similar (as simple) in matlab without going to e.g. linear indexing?
3 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!