extending columns and rows of matrix

5 ビュー (過去 30 日間)
ss
ss 2012 年 12 月 29 日
Hi I have a matrix like
a=[11 12 113 14
21 22 23 24
31 32 33 34
41 42 43 44]
and I want to extend it to
b=[11 12 13 14 0 0
21 22 23 24 0 0
31 32 33 34 0 0
41 42 43 44 0 0
0 0 0 0 0 0
0 0 0 0 0 0]
how can I do that with a one line command? thank you
[EDITED, Jan, code formatted]
  2 件のコメント
Jan
Jan 2012 年 12 月 29 日
@ss: Did you see, that there were no linebreaks in your question? I've formatted this, because it was not clear if a and b are vectors or matrices.
ss
ss 2012 年 12 月 29 日
they are matrix a is 4*4 and b is 6*6

サインインしてコメントする。

採用された回答

Jan
Jan 2012 年 12 月 29 日
Or:
a(6,6) = 0;
This fills the rest with zeros automatically.
  1 件のコメント
ss
ss 2012 年 12 月 29 日
great thanks

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2012 年 12 月 29 日
Try this
a = [a zeros(1, 14)];
  1 件のコメント
Image Analyst
Image Analyst 2012 年 12 月 29 日
If you have the Image Processing Toolbox, you might be interested in the padarray() function.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by