Sampling mutliple data around a specific point
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Point Cloud Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!