Find index of a nearest value

조회 수: 30 (최근 30일)
Adi Purwandana
Adi Purwandana 2024년 6월 17일
답변: Voss 2024년 6월 17일
Hello there,
If I have a data: x = [1 2 3 4 5 6 11 15 21 51 52 54 100 101 151 201 251 301 401];
Anyone knows how to get the index of the value close to a certain values: 10, 20, 50, 100, 150, 200, 250, 300, 400?
In this case, the index should be related to the x = 11, 21, etc.
thanks

채택된 답변

Matlab Pro
Matlab Pro 2024년 6월 17일
A simple slution using dsearchn
x = [1 2 3 4 5 6 11 15 21 51 52 54 100 101 151 201 251 301 401];
vals = [10, 20, 50, 100, 150, 200];
dsearchn(x(:),vals(:))
ans = 6x1
7 9 10 13 15 16
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

추가 답변 (3개)

Image Analyst
Image Analyst 2024년 6월 17일
Another solution
x = [1 2 3 4 5 6 11 15 21 51 52 54 100 101 151 201 251 301 401];
targetValue = 10;
[~, index] = min(abs(x - targetValue))
index = 7
closestValue = x(index)
closestValue = 11

Voss
Voss 2024년 6월 17일
x = [1 2 3 4 5 6 11 15 21 51 52 54 100 101 151 201 251 301 401];
target = [10, 20, 50, 100, 150, 200, 250, 300, 400];
[~,idx] = min(abs(x(:)-target(:).'),[],1)
idx = 1x9
7 9 10 13 15 16 17 18 19
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
closest = x(idx)
closest = 1x9
11 21 51 100 151 201 251 301 401
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

Pratyush
Pratyush 2024년 6월 17일
Hi Adi,
The following script should help you find the indices of values closest to given numbers in an array.
% Your data
x = [1 2 3 4 5 6 11 15 21 51 52 54 100 101 151 201 251 301 401];
% The target values you want to find the closest in x
targets = [10, 20, 50, 100, 150, 200, 250, 300, 400];
% Preallocate the array for indices
indices = zeros(size(targets));
% Loop through each target value
for i = 1:length(targets)
% Calculate the absolute differences
[~, indices(i)] = min(abs(x - targets(i)));
end
% Display the indices
disp(indices);

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by