how to combine these 2 matrix

3 Ansichten (letzte 30 Tage)
ajith
ajith am 11 Jun. 2013
my latent values is 10x400 and results value is 10*9 how to combine these matrics and make them into 10x409 matrics

Akzeptierte Antwort

Vishal Rane
Vishal Rane am 11 Jun. 2013
a = ones(10,400);
b = ones(10,9);
c = [ a, b]; % c is a 10x409 size matirx

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by