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

 採用された回答

Vishal Rane
Vishal Rane 2013 年 6 月 11 日

1 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by