Mercurial > repos > public > sbplib
view pointIndex.m @ 1328:3a286d2d1939 feature/D2_boundary_opt
Merge with feature/FMMlabb
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 14 Feb 2022 11:14:46 +0100 |
parents | bb079b39a7bb |
children |
line wrap: on
line source
% Get the index of the points p within the tall array of points ps function [I, ok] = pointIndex(p, ps) [ok, I] = ismember(p, ps, 'rows'); end