フィルターのクリア

find a cell that corresponds to a range of values

2 ビュー (過去 30 日間)
Lama Hamadeh
Lama Hamadeh 2022 年 7 月 17 日
回答済み: dpb 2022 年 7 月 17 日
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.

回答 (1 件)

dpb
dpb 2022 年 7 月 17 日
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.

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by