view pointIndex.m @ 1104:aa7850e8f68c feature/timesteppers

Remove some obsolete comments
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 09 Apr 2019 22:22:03 +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