How to delete values less than a given limit?
56 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Danny Maefengea
le 10 Juin 2020
Réponse apportée : KSSV
le 10 Juin 2020
Here's the question set up.
Create a 1 x 10 vector K with random values ranged 0-5.
Find a way to delete all the elements in K that are less than 2.5.
0 commentaires
Réponse acceptée
KSSV
le 10 Juin 2020
If K is your 1*10 vector.
V(V<2.5) = [] ; % this removes all elements less then 2.5
V(V<2.5) = NaN ; % This will replace all elements less then 2.5 with NaNs
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!