find a cell that corresponds to a range of values

1 view (last 30 days)
Hi all,
If a I have a column of four cells where each cell contains a range of values, as shown below.
If I have a list that has five elements: . I want to find the cell that corresponds to the range of values between each two consecutive elements in this list. For exmaple, what is the cell that is smaller than the first element and larger than the second? And then do the same for the second pair of elements.
Thanks.

Answers (1)

dpb
dpb on 17 Jul 2022
R=0:0.25:1;R=R.';
z=[0.98;0.74;0.34;0.21;0.10].';
>> [~,~,idx]=histcounts(z,R)
idx =
4
3
2
1
1
>>
In future, please attach data as text (use "code" button or Ctrl-E and it'll show up as code and copyable/executable. Nothing can do with images except look at them and then retype the data in manually.

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!