how to convert a [1,a,a] array in a [a,a] array?
Afficher commentaires plus anciens
I'd like to make a crosssection in a 3D array using surf(Array(1, : , : )) kindish fonctions but Array(1, : , : ) outputs a 3D array and surf() needs a 2D array.
Is there a simple function to do it or must i create a new variable to store Array(1, : , : )
Thank you, Marc
Réponse acceptée
Plus de réponses (1)
Joseph Cheng
le 2 Avr 2014
0 votes
the function squeeze() should do the trick, it should return an array with the same elements your starting one but with all the singleton dimensions removed.
2 commentaires
marc
le 2 Avr 2014
Joseph Cheng
le 2 Avr 2014
He always is. I need to stop writing paragraphs
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!