iam having a matrix of (128*128*24)and another of 128*128 double..how can i concatenate this..
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
iam having a matrix of (128*128*24)and another of 128*128 double..how can i concatenate this..
0 Commenti
Risposte (2)
Azzi Abdelmalek
il 19 Ott 2012
Modificato: Azzi Abdelmalek
il 19 Ott 2012
your first matrix A size is 128*128*24. If you concatenate any matrix to A the result size, obviously will change! why are you expecting the final size to be the same? have you read Matt's comment?
1 Commento
Azzi Abdelmalek
il 19 Ott 2012
Unless you want to replace one matrix by another, in this case use for example
A=rand(128,128,4);B=rand(128,128)
A(:,:,1)=B;
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!