Add 2d array in a 3d array

20 visualizzazioni (ultimi 30 giorni)
Alan De maman
Alan De maman il 6 Nov 2020
Commentato: Alan De maman il 6 Nov 2020
I have a matrix A = rand(10,5,10) and a matrix B = rand(10,10) and i would like to concatenate then along the second axis into a matrix C of shape (10,6,10)
  2 Commenti
Sindar
Sindar il 6 Nov 2020
try:
C = A;
C(:,6,:) = B;
Alan De maman
Alan De maman il 6 Nov 2020
Thank you Sindar, it worked as expected.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices 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!

Translated by