changeset 6785:5ce6ecc1377b

[project @ 2007-07-23 16:59:00 by dbateman]
author dbateman
date Mon, 23 Jul 2007 17:00:55 +0000
parents ad4dd4124c16
children bb5958d3510a
files scripts/ChangeLog scripts/general/cart2sph.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Jul 23 16:13:47 2007 +0000
+++ b/scripts/ChangeLog	Mon Jul 23 17:00:55 2007 +0000
@@ -1,3 +1,7 @@
+2007-07-23  Claudio Belotti <c.belotti@imperial.ac.uk>
+
+	* general/cart2sph.m: Fix unbalanced paranthesis.
+
 2007-07-19  David Bateman  <dbateman@free.fr>
 
 	* plot/fplot.m: More compatible version.
--- a/scripts/general/cart2sph.m	Mon Jul 23 16:13:47 2007 +0000
+++ b/scripts/general/cart2sph.m	Mon Jul 23 17:00:55 2007 +0000
@@ -38,7 +38,7 @@
 
   if ((! (ismatrix (X) && ismatrix (Y) && ismatrix (Z)))
       || (! size_equal (X, Y))
-      || (! size_equal (X, Z))
+      || (! size_equal (X, Z)))
     error ("cart2sph: arguments must be matrices of same size");
   endif