changeset 11883:a0b28e51e3d2 release-3-0-x

spline.m: delete debugging statements
author John W. Eaton <jwe@octave.org>
date Thu, 20 Nov 2008 08:34:45 +0100
parents 7f07a6cc41ae
children cee2f0ae1dba
files scripts/ChangeLog scripts/polynomial/spline.m
diffstat 2 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-10  John W. Eaton  <jwe@octave.org>
+
+	* polynomial/spline.m: Delete debugging statements.  From
+	Sebastian Schöps <sebastian@schoeps.org>.
+
 2008-11-13  John W. Eaton  <jwe@octave.org>
 
 	* statistics/distributions/chi2rnd.m: Fix another missing semicolon.
--- a/scripts/polynomial/spline.m
+++ b/scripts/polynomial/spline.m
@@ -125,10 +125,6 @@
 
       e = h(2:n-2);
 
-      size(a)
-      size(h)
-      n
-
       g = 3 * diff (a(2:n,:)) ./ h(2:n-1,idx) ...
           - 3 * diff (a(1:n-1,:)) ./ h(1:n-2,idx);
       g(1,:) = 3 * (a(3,:) - a(2,:)) / h(2) ...