how to combine these 2 matrix

3 ビュー (過去 30 日間)
ajith
ajith 2013 年 6 月 11 日
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 日
a = ones(10,400);
b = ones(10,9);
c = [ a, b]; % c is a 10x409 size matirx

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by