[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: new snapshot soon
From: |
Søren Hauberg |
Subject: |
Re: new snapshot soon |
Date: |
Thu, 13 Sep 2007 23:47:08 +0200 |
User-agent: |
Thunderbird 1.5.0.13 (X11/20070824) |
John W. Eaton skrev:
Are there any essential patches to be included or important bugs that
should be fixed before I make another snapshot? Please let me know
soon as I would like to make another snapshot tomorrow or by Monday at
the latest.
This one:
http://www.nabble.com/polyint-vs-polyinteg-tf4361251.html#a12430036
is everything but essential, but I think it should be included anyway.
I'm reattaching the patch.
Søren
P.S. I'll send a patch to fix the problem with the persistent variables
documentation tomorrow. I'm just saying it, so that nobody else will
waste their time on it...
Index: doc/interpreter/poly.txi
===================================================================
RCS file: /cvs/octave/doc/interpreter/poly.txi,v
retrieving revision 1.8
diff -u -r1.8 poly.txi
--- doc/interpreter/poly.txi 31 Aug 2007 17:29:22 -0000 1.8
+++ doc/interpreter/poly.txi 1 Sep 2007 07:53:13 -0000
@@ -88,13 +88,13 @@
@section Derivatives and Integrals
Octave comes with functions for computing the derivative and the integral
-of a polynomial. The functions @code{polyderiv} and @code{polyinteg}
+of a polynomial. The functions @code{polyderiv} and @code{polyint}
both return new polynomials describing the result. As an example we'll
compute the definite integral of @math{p(x) = x^2 + 1} from 0 to 3.
@example
c = [1, 0, 1];
-integral = polyinteg(c);
+integral = polyint(c);
area = polyval(integral, 3) - polyval(integral, 0)
@result{} 12
@end example
@@ -103,7 +103,7 @@
@DOCSTRING(polyder)
address@hidden(polyinteg)
address@hidden(polyint)
@node Polynomial Interpolation
@section Polynomial Interpolation
- new snapshot soon, John W. Eaton, 2007/09/13
- Re: new snapshot soon, kahacjde, 2007/09/13
- Re: new snapshot soon, David Bateman, 2007/09/14
- Re: new snapshot soon, Jean-Francois Cardoso, 2007/09/14
- Re: new snapshot soon, Tatsuro MATSUOKA, 2007/09/14