Mercurial > repos > public > sbplib
view pointIndex.m @ 1060:e40899094f20 feature/poroelastic
Elastic2dVariable: Clean up alpha in getBoundaryOperator. Add alpha1 and alpha2 as boundary operators.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 26 Jan 2019 16:56:35 -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