Effacer les filtres
Effacer les filtres

Convert 3D matrix to 2D matrix.

2 vues (au cours des 30 derniers jours)
Aniya
Aniya le 19 Oct 2016
Commenté : Aniya le 19 Oct 2016
If i have value of x,y,z plane in 3D matrix and i want to change the 3D to 2D array( of each x plain).

Réponse acceptée

Massimo Zanetti
Massimo Zanetti le 19 Oct 2016
I try to guess from your question:
%random 3D array
A=rand(5,6,7);
%extract a 2D matrix from first dimension of A
x=1; % x can be from 1 to 5 in this example
B=A(x,:,:)
  1 commentaire
Aniya
Aniya le 19 Oct 2016
Thank you Massimo.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by