Insert zeros into matrix in matlab

I am trying to insert zeros into a matrix, an example is as follows:
[1;2]
to
[1;0;0;0;0;2]
Can anyone please show me how to perform this in matlab?

1 件のコメント

Hikaru
Hikaru 2015 年 8 月 24 日
Can you be more specific? Do you have any conditions that need to be fulfilled to insert the zeroes?

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

 採用された回答

Walter Roberson
Walter Roberson 2015 年 8 月 24 日

1 投票

B = [A(1); zeros(4,1); A(2)];

1 件のコメント

Atreyu91
Atreyu91 2015 年 8 月 25 日
I could not find an example anywhere that put it this simply, thank you!

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品

質問済み:

2015 年 8 月 24 日

コメント済み:

2015 年 8 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by