필터 지우기
필터 지우기

find a cell that corresponds to a range of values

조회 수: 1 (최근 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 CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by