Mercurial > repos > public > sbplib
view pointIndex.m @ 850:4e5e53d6336c feature/burgers1d
Correct documentation of Rungekutta
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 21 Sep 2018 09:14:38 +0200 |
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