Can we use scatteredinterpolant in parallel

I am doing data interpolation using scatteredinterpolant method. The data set is large (110k nodes). My question is : can we speed up the scatteredinterpolant function by using it with parallel toolbox?
Thx
Bin

답변 (2개)

Matt J
Matt J 2019년 7월 10일
편집: Matt J 2019년 7월 10일

0 개 추천

You can certainly divide queries into parallel batches, e.g.,
F=scatteredInterpolant(P,v);
results=cell(size(batch));
parfor i=1:numel(batch)
results{i}= F(batch{i});
end

카테고리

도움말 센터File Exchange에서 Parallel Computing Toolbox에 대해 자세히 알아보기

제품

질문:

2019년 7월 10일

편집:

2019년 7월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by