comparison scripts/polynomial/ppint.m @ 12575:d0b799dafede

Grammarcheck files for 3.4.1 release.
author Rik <octave@nomad.inbox5.com>
date Mon, 04 Apr 2011 15:33:46 -0700
parents c792872f8942
children 59e2460acae1
comparison
equal deleted inserted replaced
12574:89604fa96d2f 12575:d0b799dafede
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{ppi} =} ppint (@var{pp}) 20 ## @deftypefn {Function File} {@var{ppi} =} ppint (@var{pp})
21 ## @deftypefnx {Function File} {@var{ppi} =} ppint (@var{pp}, @var{c}) 21 ## @deftypefnx {Function File} {@var{ppi} =} ppint (@var{pp}, @var{c})
22 ## Compute the integral of the piecewise polynomial struct @var{pp}. 22 ## Compute the integral of the piecewise polynomial struct @var{pp}.
23 ## @var{c}, if given, is the constant of integration. 23 ## @var{c}, if given, is the constant of integration.
24 ## @seealso{mkpp,ppval,ppder} 24 ## @seealso{mkpp, ppval, ppder}
25 ## @end deftypefn 25 ## @end deftypefn
26 26
27 function ppi = ppint (pp, c) 27 function ppi = ppint (pp, c)
28 if (nargin < 1 || nargin > 2) 28 if (nargin < 1 || nargin > 2)
29 print_usage (); 29 print_usage ();