Mercurial > repos > public > sbplib
view pointIndex.m @ 1307:fcca6ad8b102 feature/poroelastic
Add diffOp for viscoElastic
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sun, 19 Jul 2020 20:30:16 -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