diff src/OPERATORS/op-sm-m.cc @ 9931:fb6b6fcafa62

untabify files in src/OPERATORS directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:49:48 -0500
parents eb63fbe60fab
children ac4b97c6bf8b
line wrap: on
line diff
--- a/src/OPERATORS/op-sm-m.cc	Mon Dec 07 13:17:13 2009 -0500
+++ b/src/OPERATORS/op-sm-m.cc	Mon Dec 07 14:49:48 2009 -0500
@@ -1,6 +1,6 @@
 /*
 
-Copyright (C) 2004, 2005, 2006, 2007, 2008 David Bateman
+Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 David Bateman
 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Andy Adler
 
 This file is part of Octave.
@@ -72,7 +72,7 @@
       double d = v1.scalar_value ();
 
       if (d == 0.0)
-	gripe_divide_by_zero ();
+        gripe_divide_by_zero ();
 
       return octave_value (v2.array_value () / d);
     }
@@ -81,7 +81,7 @@
       MatrixType typ = v1.matrix_type ();
 
       Matrix ret = xleftdiv (v1.sparse_matrix_value (), 
-			     v2.matrix_value (), typ);
+                             v2.matrix_value (), typ);
 
       v1.matrix_type (typ);
       return ret;
@@ -105,7 +105,7 @@
   CAST_BINOP_ARGS (const octave_sparse_matrix&, const octave_matrix&);
   
   return octave_value (elem_xpow (v1.sparse_matrix_value (), 
-				  SparseMatrix (v2.matrix_value ())));
+                                  SparseMatrix (v2.matrix_value ())));
 }
 
 DEFBINOP (el_ldiv, sparse_matrix, matrix)