how to combine these 2 matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
my latent values is 10x400 and results value is 10*9 how to combine these matrics and make them into 10x409 matrics
0 Commenti
Risposta accettata
Vishal Rane
il 11 Giu 2013
a = ones(10,400);
b = ones(10,9);
c = [ a, b]; % c is a 10x409 size matirx
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping 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!