changeset 2715:df8c732b4fb2

[project @ 1997-02-22 02:39:47 by jwe]
author jwe
date Sat, 22 Feb 1997 02:40:00 +0000
parents 9f7598c8de22
children 2b5c27299cde
files ChangeLog Makeconf.in scripts/ChangeLog scripts/plot/contour.m
diffstat 4 files changed, 11 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 22 00:06:20 1997 +0000
+++ b/ChangeLog	Sat Feb 22 02:40:00 1997 +0000
@@ -1,3 +1,8 @@
+Fri Feb 21 20:38:25 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* Makeconf.in (do-subst-config-vals): Remove extra -L from
+	RLD_FLAG substitution.
+
 Thu Feb 20 02:58:05 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* Version 2.0.4 released.
--- a/Makeconf.in	Sat Feb 22 00:06:20 1997 +0000
+++ b/Makeconf.in	Sat Feb 22 02:40:00 1997 +0000
@@ -324,7 +324,7 @@
   -e "s;%GCC_IEEE_FP_FLAG%;\"${GCC_IEEE_FP_FLAG}\";" \
   -e "s;%LDFLAGS%;\"${LDFLAGS}\";" \
   -e "s;%LIBFLAGS%;\"-L${libdir}\";" \
-  -e "s;%RLD_FLAG%;\"-L${RLD_FLAG}\";" \
+  -e "s;%RLD_FLAG%;\"${RLD_FLAG}\";" \
   -e "s;%CXXLIBS%;\"${CXXLIBS}\";" \
   -e "s;%TERMLIBS%;\"${TERMLIBS}\";" \
   -e "s;%LIBS%;\"${LIBS}\";" \
--- a/scripts/ChangeLog	Sat Feb 22 00:06:20 1997 +0000
+++ b/scripts/ChangeLog	Sat Feb 22 02:40:00 1997 +0000
@@ -1,5 +1,8 @@
 Fri Feb 21 13:36:58 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* plot/contour.m: Order data so that it is consistent with
+	meshgrid and mesh.
+
 	* plot/meshdom.m, plot/meshgrid.m: Change help message.
 	* plot/sombrero.m: Use meshgrid, not meshdom.
 
--- a/scripts/plot/contour.m	Sat Feb 22 00:06:20 1997 +0000
+++ b/scripts/plot/contour.m	Sat Feb 22 02:40:00 1997 +0000
@@ -53,12 +53,12 @@
           x = x';
         endif
         len = 3 * ylen;
-        zz = zeros (xlen, ylen);
+        zz = zeros (xlen, len);
         k = 1;
         for i = 1:3:len
           zz(:,i)   = x;
           zz(:,i+1) = y(k) * ones (xlen, 1);
-          zz(:,i+2) = z(:,k);
+          zz(:,i+2) = z(k,:)';
           k++;
         endfor
         gset nosurface;