How can I add zeros between elements of a matrix?

78 ビュー (過去 30 日間)
Lucrezia Cester
Lucrezia Cester 2020 年 8 月 31 日
回答済み: Stephen23 2020 年 8 月 31 日
I have a vector [1,2,3];
and I want to obtain [1,0,2,0,3,0];
How can this be achieved?

回答 (2 件)

Stephen23
Stephen23 2020 年 8 月 31 日
>> A = [1,2,3];
Method one: indexing:
>> B = zeros(size(A).*[1,2]);
>> B(1:2:end) = A
B =
1 0 2 0 3 0
Method two: reshape:
>> B = A;
>> B(2,:) = 0;
>> B = B(:).'
B =
1 0 2 0 3 0

madhan ravi
madhan ravi 2020 年 8 月 31 日
reshape([vector; zeros(size(vector))], 1, [])

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by