Finding elements in an array that differ by a certain tolerance from elements in another array of different size

1 次查看(过去 30 天)
What is the best way to do the following:
count=0
for i=1:size(array_1,1)
for j=1:size(array_2,1)
if abs(array_1(i)-array_2(j))<1
count=count+1;
array_3(count)=array_2(j);
end
end
end
The arrays are of different size

采纳的回答

KSSV
KSSV 2018-2-20
Read about ismembertol

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by