Mercurial > repos > public > sbplib
view pointIndex.m @ 1110:9ddd2e89d018 feature/laplace_curvilinear_test
Bugfix in interfaceNonconforming(). Remove unused properties gamm_u, gamm_v.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 10 Apr 2019 13:27:50 -0700 |
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