merging the values
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have 2 matrices
A and B and 100 rows and 42 columns,now i want 1st row of A and B matrices to be stored in an variable named firstcombination,2nd row of A and b matrices to be stored as secondcombination and so on,please help
1 Commento
Walter Roberson
il 30 Gen 2012
Do you need to _store_ the combinations one by one in to individual variables each of which includes the combination number? Or do you need to _output_ the combinations to the display?
Risposta accettata
Andrei Bobrov
il 30 Gen 2012
try this is code:
combinations = permute(cat(3,A,B),[3 2 1]);
your 1st combination:
combinations(:,:,1)
your 2nd combination:
combinations(:,:,2)
ets
Più risposte (1)
Walter Roberson
il 29 Gen 2012
2 Commenti
Walter Roberson
il 30 Gen 2012
Variable names cannot start with a number. If your requirement is variable names that start with a number, you will need to find a very different computer language.
Vedere anche
Categorie
Scopri di più su Performance and Memory 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!