Effacer les filtres
Effacer les filtres

What to use instead of horzcat for N-D Arrays?

3 vues (au cours des 30 derniers jours)
Douglas Anderson
Douglas Anderson le 23 Mai 2018
Hello.
I have a 3D array (let's say 3 x 4 x 100, call it AA) and want to add zeros to the end of the long dimension (let's say to get it to 3 x 4 x 200, adding on BB that is also 3 x 4 x 100 with zeros). horzcat() isn't happy, and [AA BB] won't do it.
Suggestions? Thanks!
Doug Anderson

Réponse acceptée

James Tursa
James Tursa le 23 Mai 2018
AA(end,end,200) = 0;

Plus de réponses (1)

Steven Lord
Steven Lord le 23 Mai 2018
The horzcat function concatenates horizontally, in dimension 2.
The vertcat function concatenates vertically, in dimension 1.
The cat function lets you concatenate in whatever dimension you specify. As shown in the example on the cat documentation page, you want to concatenate in dimension 3.
  1 commentaire
Douglas Anderson
Douglas Anderson le 23 Mai 2018
Thank you Steven -- that's also great.

Connectez-vous pour commenter.

Catégories

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

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by