comparison scripts/geometry/delaunayn.m @ 20852:516bb87ea72e

2015 Code Sprint: remove class of function from docstring for all m-files.
author Rik <rik@octave.org>
date Sat, 12 Dec 2015 07:31:00 -0800
parents 7503499a252b
children f7f97d7e9294
comparison
equal deleted inserted replaced
20851:0828bf20d105 20852:516bb87ea72e
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{T} =} delaunayn (@var{pts}) 20 ## @deftypefn {} {@var{T} =} delaunayn (@var{pts})
21 ## @deftypefnx {Function File} {@var{T} =} delaunayn (@var{pts}, @var{options}) 21 ## @deftypefnx {} {@var{T} =} delaunayn (@var{pts}, @var{options})
22 ## Compute the Delaunay triangulation for an N-dimensional set of points. 22 ## Compute the Delaunay triangulation for an N-dimensional set of points.
23 ## 23 ##
24 ## The Delaunay triangulation is a tessellation of the convex hull of a set of 24 ## The Delaunay triangulation is a tessellation of the convex hull of a set of
25 ## points such that no N-sphere defined by the N-triangles contains any other 25 ## points such that no N-sphere defined by the N-triangles contains any other
26 ## points from the set. 26 ## points from the set.