comparison scripts/geometry/trisurf.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 c792872f8942
children 482cf3aad915
comparison
equal deleted inserted replaced
12266:a319d7ed61c6 12267:8ef6a4373310
21 ## @deftypefnx {Function File} {@var{h} =} trisurf (@dots{}) 21 ## @deftypefnx {Function File} {@var{h} =} trisurf (@dots{})
22 ## Plot a triangular surface in 3D@. The variable @var{tri} is the triangular 22 ## Plot a triangular surface in 3D@. The variable @var{tri} is the triangular
23 ## meshing of the points @code{(@var{x}, @var{y})} which is returned 23 ## meshing of the points @code{(@var{x}, @var{y})} which is returned
24 ## from @code{delaunay}. The variable @var{z} is value at the point 24 ## from @code{delaunay}. The variable @var{z} is value at the point
25 ## @code{(@var{x}, @var{y})}. The output argument @var{h} is the graphic 25 ## @code{(@var{x}, @var{y})}. The output argument @var{h} is the graphic
26 ## handle to the plot. 26 ## handle of the plot.
27 ## @seealso{triplot, delaunay3} 27 ## @seealso{triplot, trimesh, delaunay3}
28 ## @end deftypefn 28 ## @end deftypefn
29 29
30 function h = trisurf (tri, x, y, z, varargin) 30 function h = trisurf (tri, x, y, z, varargin)
31 31
32 if (nargin < 3) 32 if (nargin < 3)