diff src/sparse-xpow.cc @ 5775:ace8d8d26933

[project @ 2006-04-24 19:13:06 by jwe]
author jwe
date Mon, 24 Apr 2006 19:13:11 +0000
parents 2857357f9d3c
children 6b9cec830d72
line wrap: on
line diff
--- a/src/sparse-xpow.cc	Mon Apr 24 17:45:31 2006 +0000
+++ b/src/sparse-xpow.cc	Mon Apr 24 19:13:11 2006 +0000
@@ -214,7 +214,7 @@
 //
 //   * -> not needed.
 
-// XXX FIXME XXX -- these functions need to be fixed so that things
+// FIXME -- these functions need to be fixed so that things
 // like
 //
 //   a = -1; b = [ 0, 0.5, 1 ]; r = a .^ b
@@ -300,7 +300,7 @@
 octave_value
 elem_xpow (const SparseMatrix& a, double b)
 {
-  // XXX FIXME XXX What should a .^ 0 give?? Matlab gives a 
+  // FIXME What should a .^ 0 give?? Matlab gives a 
   // sparse matrix with same structure as a, which is strictly
   // incorrect. Keep compatiability.
 
@@ -317,7 +317,7 @@
 	{
 	  ComplexMatrix result (nr, nc, Complex (pow (0.0, b)));
 
-	  // XXX FIXME XXX -- avoid apparent GNU libm bug by
+	  // FIXME -- avoid apparent GNU libm bug by
 	  // converting A and B to complex instead of just A.
 	  Complex btmp (b);
 
@@ -355,7 +355,7 @@
 	{
 	  OCTAVE_QUIT;
 
-	  // XXX FIXME XXX -- avoid apparent GNU libm bug by
+	  // FIXME -- avoid apparent GNU libm bug by
 	  // converting A and B to complex instead of just A.
 
 	  Complex atmp (a.data (i));