Mercurial > hg > octave-nkf
comparison scripts/polynomial/polyinteg.m @ 3368:a4cd1e9d9962
[project @ 1999-11-20 17:22:48 by jwe]
author | jwe |
---|---|
date | Sat, 20 Nov 1999 17:23:01 +0000 |
parents | 44d82b369c78 |
children | f8dde1807dee |
comparison
equal
deleted
inserted
replaced
3367:0748b03c3510 | 3368:a4cd1e9d9962 |
---|---|
15 ## You should have received a copy of the GNU General Public License | 15 ## You should have received a copy of the GNU General Public License |
16 ## along with Octave; see the file COPYING. If not, write to the Free | 16 ## along with Octave; see the file COPYING. If not, write to the Free |
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA | 17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
18 ## 02111-1307, USA. | 18 ## 02111-1307, USA. |
19 | 19 |
20 ## usage: polyinteg (p) | 20 ## -*- texinfo -*- |
21 ## | 21 ## @deftypefn {Function File} {} polyinteg (@var{c}) |
22 ## Returns the coefficients of the integral the polynomial whose coefficients | 22 ## Return the coefficients of the integral of the polynomial whose |
23 ## are represented by the vector p. | 23 ## coefficients are represented by the vector @var{c}. |
24 ## | 24 ## |
25 ## The constant of integration is zero. | 25 ## The constant of integration is set to zero. |
26 ## | 26 ## @end deftypefn |
27 | |
27 ## SEE ALSO: poly, polyderiv, polyreduce, roots, conv, deconv, residue, | 28 ## SEE ALSO: poly, polyderiv, polyreduce, roots, conv, deconv, residue, |
28 ## filter, polyval, polyvalm | 29 ## filter, polyval, polyvalm |
29 | 30 |
30 ## Author: Tony Richardson <arichard@stark.cc.oh.us> | 31 ## Author: Tony Richardson <arichard@stark.cc.oh.us> |
31 ## Created: June 1994 | 32 ## Created: June 1994 |