comparison scripts/geometry/triplot.m @ 12267:8ef6a4373310 release-3-4-x

Add undocumented function trisurf to manual.
author Rik <octave@nomad.inbox5.com>
date Thu, 27 Jan 2011 19:12:31 -0800
parents fd0a3ac60b0e
children
comparison
equal deleted inserted replaced
12266:a319d7ed61c6 12267:8ef6a4373310
22 ## @deftypefnx {Function File} {@var{h} =} triplot (@dots{}) 22 ## @deftypefnx {Function File} {@var{h} =} triplot (@dots{})
23 ## Plot a triangular mesh in 2D@. The variable @var{tri} is the triangular 23 ## Plot a triangular mesh in 2D@. The variable @var{tri} is the triangular
24 ## meshing of the points @code{(@var{x}, @var{y})} which is returned from 24 ## meshing of the points @code{(@var{x}, @var{y})} which is returned from
25 ## @code{delaunay}. If given, the @var{linespec} determines the properties 25 ## @code{delaunay}. If given, the @var{linespec} determines the properties
26 ## to use for the lines. The output argument @var{h} is the graphic handle 26 ## to use for the lines. The output argument @var{h} is the graphic handle
27 ## to the plot. 27 ## of the plot.
28 ## @seealso{plot, trimesh, delaunay} 28 ## @seealso{plot, trimesh, trisurf, delaunay}
29 ## @end deftypefn 29 ## @end deftypefn
30 30
31 function h = triplot (tri, x, y, varargin) 31 function h = triplot (tri, x, y, varargin)
32 32
33 if (nargin < 3) 33 if (nargin < 3)