insert 0 in the each 3N location

1 回表示 (過去 30 日間)
Phong Pham
Phong Pham 2016 年 7 月 18 日
回答済み: Laura 2016 年 7 月 18 日
I have matrix A that has something like this
A = [ 1 2 .5 .6 -.7 .9, so on]
Now I want A to fill with zero at location 3, 6, 9 to 3N.
A= [ 1 2 0 .5 .6 0, -7, .9 0 , etc.]

採用された回答

Laura
Laura 2016 年 7 月 18 日
B=zeros(1,3*N)
for i=1:N
B(1,3*i-2) = A(1,2*i-1);
B(1,3*i-1) = A(1,2*i);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by