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 Kommentare

Sindar
Sindar am 6 Nov. 2020
try:
C = A;
C(:,6,:) = B;
Alan De maman
Alan De maman am 6 Nov. 2020
Thank you Sindar, it worked as expected.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Gefragt:

am 6 Nov. 2020

Kommentiert:

am 6 Nov. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by