Sampling mutliple data around a specific point

조회 수: 2 (최근 30일)
Si Cla
Si Cla 2017년 6월 16일
편집: dpb 2017년 6월 16일
I have a large number of xyz data. I need to find the nearest equivalent data points within this data set to some coordinates. I.e. I need to find all the nearest xyz data which "surrounds" each coordinate, and then sample this data cloud. Currently, my code can sample the nearest xyz data point to a coordinate, but not all that surround it.
[nr, nc]=size(field);
for i=1:nr
[~, index]=min(abs(model(:,1)-field(i,1))+(abs(model(:,2)-field(i,2))+(abs(model(:,3)-field(i,3)))));
output(i,:)=model(index,:);
end
Is it as simple as creating another loop, or is there a function that allows me sample a data cloud? I've not found anything that seems appropriate.
Many thanks in advance!

답변 (0개)

카테고리

Help CenterFile Exchange에서 Point Cloud Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by