Effacer les filtres
Effacer les filtres

How to fill the remaining "N" number of rows, of an already populated vector, with zeros

32 vues (au cours des 30 derniers jours)
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!

Réponse acceptée

MF
MF le 18 Sep 2018
Modifié(e) : MF le 19 Sep 2018
Here is an example. 1) Let's first make a random vector of the size you have specified and 2) fill the vector with zeros so that it reaches 20000 rows.
GV=rand(18001,1);
GV(end+1:20000)=0;
  3 commentaires
Austin Sowers
Austin Sowers le 18 Sep 2018
A very good point. Thank you guys for your help!
MF
MF le 19 Sep 2018
Thank you dpb. The code was modified. I apologise for any inconveniences.

Connectez-vous pour commenter.

Plus de réponses (2)

Bruno Luong
Bruno Luong le 18 Sep 2018
Modifié(e) : Bruno Luong le 18 Sep 2018
% ... Compute GV
GV(20000)=0 % if you are sure 20000>length(GV), if not protect with IF

dpb
dpb le 18 Sep 2018
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...

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by