changeset 8310:87f316e219b6

spline.m: delete debugging statements
author John W. Eaton <jwe@octave.org>
date Mon, 10 Nov 2008 10:43:00 -0500
parents 05b7a8ffec65
children 7124bffc89c7
files scripts/ChangeLog scripts/polynomial/spline.m
diffstat 2 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Nov 10 15:55:28 2008 +0100
+++ b/scripts/ChangeLog	Mon Nov 10 10:43:00 2008 -0500
@@ -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-09-28  Jaroslav Hajek <highegg@gmail.com>
 
 	* optimization/__fdjac__.m: New function file.
--- a/scripts/polynomial/spline.m	Mon Nov 10 15:55:28 2008 +0100
+++ b/scripts/polynomial/spline.m	Mon Nov 10 10:43:00 2008 -0500
@@ -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) ...