Matlab algorithm for point location in Delaunay triangulations (tsearchn)
8 ビュー (過去 30 日間)
古いコメントを表示
Does anyone know which algorithm Matlab uses for point location in a Delaunay triangulation (function 'tsearchn')? I haven't been able to google it. I wonder if it's just brute force, or some sophisticated method.
The interest is purely theoretical, I want to compare performance of different point location approaches in high-dimensional triangulations and need a baseline for comparison.
A paper reference would be very welcome, or at least a general idea of the algorithm and its complexity in terms of d (dimension) and n (number of points/simpleces). If this, however, cannot be disclosed, than so be it.
0 件のコメント
回答 (1 件)
Keith Dalbey
2013 年 12 月 31 日
編集済み: Keith Dalbey
2013 年 12 月 31 日
A few years back I talked to the guy who wrote qhull and he said the "optimally fast" way to identify the triangles that contained the points would be to modify the qhull algorithm to use two sets of points at the same time (and I'm paraphrasing from memory here), as it inserts planes into the first set, keep track of what sides of the planes that the second set of points were located in. So the complexity of the optimal approach should be the complexity of qhull. I had also asked this question (how their new tsearchn algorithm worked, when the time for a particular problem I was working on dropped from several minutes to a few seconds) of mathworks and the non-descriptive answer I got was that it was based on qhull and that the specifics of the algorithm were proprietary, but I'd guess their using the "optimal" qhull approach.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Spatial Search についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!