Mercurial > repos > public > sbplib
view pointIndex.m @ 1079:ae4b090b5299
Bugfix missing semi-colon in Laplace1d.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 20 Feb 2019 16:14:15 -0800 |
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