octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [changeset] - improve clf() compatibility


From: John W. Eaton
Subject: Re: [changeset] - improve clf() compatibility
Date: Tue, 21 Oct 2008 15:50:38 -0400

On 21-Oct-2008, John W. Eaton wrote:

| * Try
| 
|     demo quiver3
|     demo ribbon
| 
|   Both of these seem to work OK if run separately in fresh Octave
|   sessions, but quiver3 seems to be leaving some state that causes
|   ribbon to do the wrong thing.  Maybe this is a hold problem?  I
|   haven't looked at it yet.

OK, this one was trivial.  I applied the following patch.

jwe

# HG changeset patch
# User John W. Eaton <address@hidden>
# Date 1224618553 14400
# Node ID 873ea2c72f16b4f089d721809b419c3c5cc522bb
# Parent  b12a2975bf7e1b32b25fd8ea9912f346076d90ec
quiver3.m: turn hold off after demo

diff --git a/scripts/ChangeLog b/scripts/ChangeLog
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -3,6 +3,8 @@
        * plot/clf.m: Improve Matlab compatibility.
 
 2008-10-21  John W. Eaton  <address@hidden>
+
+       * plot/quiver3.m: Turn hold off after demo.
 
        * plot/newplot.m: Delete stray debugging code.
 
diff --git a/scripts/plot/quiver3.m b/scripts/plot/quiver3.m
--- a/scripts/plot/quiver3.m
+++ b/scripts/plot/quiver3.m
@@ -100,3 +100,4 @@
 %! [u, v, w] = surfnorm (x, y, z / 10);
 %! h = quiver3 (x, y, z, u, v, w);
 %! set (h, "maxheadsize", 0.33);
+%! hold off;

reply via email to

[Prev in Thread] Current Thread [Next in Thread]