2D matrix plane from a 3D matrix.
Mostrar comentarios más antiguos
I want to get a plane from a 3D matrix as a 2D matrix. i have tried using these commands but it doesn't works.
P = A ( 10, :, : ) . I want the plane y-z of A matrix and save it as a 2D 'P' Matrix.
Respuestas (1)
KSSV
el 14 de Jun. de 2018
P = squeeze(A ( 10, :, : )) ;
Read about squeeze
Categorías
Más información sobre Creating and Concatenating Matrices 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!