How to fill the remaining "N" number of rows, of an already populated vector, with zeros
23 ビュー (過去 30 日間)
古いコメントを表示
It may be confusing, so let me explain. The "GV" data I provided has values in it. It is size (18,001 x 1). I want the to fill the remaining "N" number of rows with zeros. So it may be a (20,000 x 1) or perhaps a (30,000 x 1) vector, but still with the first 18,001 rows filled with the "GV" values. How to do this??
Thank you in advance!
0 件のコメント
採用された回答
その他の回答 (2 件)
Bruno Luong
2018 年 9 月 18 日
編集済み: Bruno Luong
2018 年 9 月 18 日
% ... Compute GV
GV(20000)=0 % if you are sure 20000>length(GV), if not protect with IF
dpb
2018 年 9 月 18 日
Alternatively, and perhaps more efficient depending upon how GV is generated/obtained...
GV(Ntotal,1)=0; % preallocate (could also write zeros(Ntotal,1) )
GV(1:N)=GVcalculation(1:N); % put the calculation results in first N locations
Which way is more effective depends on the details we don't know...
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!