comparison scripts/plot/fplot.m @ 12632:2dbac27e0e40 stable

doc: miscellaneous touch-ups to documentation strings * debug.txi: Correct line number for debug example. * func.txi: Correct directory structure of functions shipped with Octave distribution. * edit.m: Eliminate reference to editor used by bug_report. * fzero.m: Add inline function to list of possible inputs. * fplot.m: Add comma to break list of possible inputs. * qqplot.m: Correct example so that it runs under current Octave distributions. * assert.m: Add seealso reference to fail. * fail.m: Add seealso reference to assert. Add additional calling forms of function. * load-path.cc (addpath): Don't use @samp which created double double quotes around option. * ov-fcn-inline.cc (vectorize): Add example usage. * variables.cc (exist): Add seealso link to file_in_loadpath.
author Rik <octave@nomad.inbox5.com>
date Mon, 25 Apr 2011 09:24:33 -0700
parents c792872f8942
children 22c50cbad2ce
comparison
equal deleted inserted replaced
12629:8c25df502846 12632:2dbac27e0e40
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} fplot (@var{fn}, @var{limits}) 20 ## @deftypefn {Function File} {} fplot (@var{fn}, @var{limits})
21 ## @deftypefnx {Function File} {} fplot (@var{fn}, @var{limits}, @var{tol}) 21 ## @deftypefnx {Function File} {} fplot (@var{fn}, @var{limits}, @var{tol})
22 ## @deftypefnx {Function File} {} fplot (@var{fn}, @var{limits}, @var{n}) 22 ## @deftypefnx {Function File} {} fplot (@var{fn}, @var{limits}, @var{n})
23 ## @deftypefnx {Function File} {} fplot (@dots{}, @var{fmt}) 23 ## @deftypefnx {Function File} {} fplot (@dots{}, @var{fmt})
24 ## Plot a function @var{fn}, within the defined limits. @var{fn} 24 ## Plot a function @var{fn} within defined limits.
25 ## an be either a string, a function handle or an inline function. 25 ## @var{fn} is a function handle, inline function, or string
26 ## containing the name of the function to evaluate.
26 ## The limits of the plot are given by @var{limits} of the form 27 ## The limits of the plot are given by @var{limits} of the form
27 ## @code{[@var{xlo}, @var{xhi}]} or @code{[@var{xlo}, @var{xhi}, 28 ## @code{[@var{xlo}, @var{xhi}]} or @code{[@var{xlo}, @var{xhi},
28 ## @var{ylo}, @var{yhi}]}. @var{tol} is the default tolerance to use for the 29 ## @var{ylo}, @var{yhi}]}. @var{tol} is the default tolerance to use for the
29 ## plot, and if @var{tol} is an integer it is assumed that it defines the 30 ## plot, and if @var{tol} is an integer it is assumed that it defines the
30 ## number points to use in the plot. The @var{fmt} argument is passed 31 ## number points to use in the plot. The @var{fmt} argument is passed