how to combine these 2 matrix

my latent values is 10x400 and results value is 10*9 how to combine these matrics and make them into 10x409 matrics

 Réponse acceptée

Vishal Rane
Vishal Rane le 11 Juin 2013

1 vote

a = ones(10,400);
b = ones(10,9);
c = [ a, b]; % c is a 10x409 size matirx

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by