# HG changeset patch # User jwe # Date 1177647108 0 # Node ID 8899e24ae362bedf70ca957be6e1cd43aba86119 # Parent fc0218995ee771a90b2d1999fed27ed36e938479 [project @ 2007-04-27 04:11:48 by jwe] diff -r fc0218995ee7 -r 8899e24ae362 scripts/plot/contourc.m --- a/scripts/plot/contourc.m Fri Apr 27 02:17:34 2007 +0000 +++ b/scripts/plot/contourc.m Fri Apr 27 04:11:48 2007 +0000 @@ -41,8 +41,17 @@ ## value is wanted, set @code{@var{vn} = [val, val]}; ## If @var{vn} is omitted it defaults to 10. ## +## For example, ## @example -## c = contourc (x, y, z, linspace (0, 2*pi, 10)); +## @group +## x = 0:2; +## y = x; +## z = x' * y; +## contourc (x, y, z, 2:3) +## @result{} 2.0000 2.0000 1.0000 3.0000 1.5000 2.0000 +## 2.0000 1.0000 2.0000 2.0000 2.0000 1.5000 +## +## @end group ## @end example ## @seealso{contour} ## @end deftypefn