How to find the element of a number if that number were to be placed in an ordered list?

2 vues (au cours des 30 derniers jours)
For example:
list = (0:10)
number= 2.5
the element it is in-between is 3 and 4
What is the most efficient way of finding where 2.5 would lie in that list and which elements it would be in-between?
Is there a better way than doing a for loop?
for i = 1:length(list)
if number > list(length(list))
fprintf('it is greater than any the numbers')
end
if number == list(i)
fprintf('it is element %d',i)
end
if number < list(length(list))
if number > list(i)
if number < list(i+1)
fprintf('it is between element %d and %d ',i,i+1 )
end
end
end
end

Réponse acceptée

Stephen23
Stephen23 le 22 Fév 2020
The robust solution:
>> ida = find(list<number,1,'last')
ida = 3
>> idb = find(list>number,1,'first')
idb = 4

Plus de réponses (1)

madhan ravi
madhan ravi le 22 Fév 2020
Between = [find(ismember(list1,fix(2.5))), find(ismember(list1,ceil(2.5)))]
  5 commentaires
madhan ravi
madhan ravi le 22 Fév 2020
Oops thank you for indicating Stephen.
arthurk
arthurk le 22 Fév 2020
I'm trying to find the most efficient way. As you can see from my code I do have knowledge of using operators, however I'm trying to make it efficiently as possible without expending many lines of code.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by