How to extract certain values from an array

114 vues (au cours des 30 derniers jours)
Lama Shalabi
Lama Shalabi le 26 Mar 2021
Commenté : Lama Shalabi le 26 Mar 2021
I have an array:
x=[8,5,5,5,9,4,3,2,9,10]
I would like to create a new array but only with values less than 7. How can I do this?
Thank you in advance!

Réponse acceptée

per isakson
per isakson le 26 Mar 2021
>> x=[8,5,5,5,9,4,3,2,9,10];
>> new = x(x<7)
new =
5 5 5 4 3 2

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by