v = [0 8 1 2 6 4 8]
How do I determine length of the vector?
Also, how do I pre-allocate the descending vector with all zeros?
Thank you!

 Réponse acceptée

Walter Roberson
Walter Roberson le 10 Fév 2020

0 votes

length(v)
zeros(size(v))

3 commentaires

Seoyoung Cho
Seoyoung Cho le 10 Fév 2020
thanks a lot!
Seoyoung Cho
Seoyoung Cho le 10 Fév 2020
do you know how to do pre-allocate the ascending vector with all zeros?
Walter Roberson
Walter Roberson le 10 Fév 2020
zeros(size(v)) works no matter whether you are planning to put ascending or descending variables; it also works even if you are planning to put complex numbers in (I mention those because complex numbers cannot generally be ordered into ascending or descending.)

Connectez-vous pour commenter.

Plus de réponses (1)

fred  ssemwogerere
fred ssemwogerere le 10 Fév 2020

0 votes

leng=length(v); % length of a vector
pA=zeros(1,leng); % pre-allocation with zeros

Catégories

En savoir plus sur Mathematics dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by