Effacer les filtres
Effacer les filtres

How to remove elements in a vector using length function?

2 vues (au cours des 30 derniers jours)
pavlos
pavlos le 23 Déc 2015
Commenté : Robert Steidl le 23 Déc 2015
Hello,
Consider a vector with length equals 110.
I want to remove the elements that are correspond to the indices that are larger than 100 (a random threshold), i.e. the elements that correspond from 101 to 110 indices.
Thanks.
Pavlos

Réponse acceptée

Robert Steidl
Robert Steidl le 23 Déc 2015
Hy, hope I can help with your prob:
A=ones(1,110) % Vector with 110 values
threshold=100; A(threshold:end)=[];
Vector A has then the size 1x99
Hope that is what you are looking for
  2 commentaires
pavlos
pavlos le 23 Déc 2015
How it is done with logical comparisons?
For example, A(length(A)>100)=[];
Robert Steidl
Robert Steidl le 23 Déc 2015
Hy,
in my mind the use of length make no sense in this case!!! Could you please explain me why you want to use "Length" for your problem? Have you tried my advice? Tell me why it doesn't fulfil your problem?
greets, Robert

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by