changeset 3787:5fea33691021

[project @ 2001-02-07 18:24:37 by jwe]
author jwe
date Wed, 07 Feb 2001 18:24:37 +0000
parents 9bb6e4197fc5
children c60b54937cfe
files scripts/ChangeLog scripts/statistics/base/ppplot.m scripts/statistics/base/qqplot.m
diffstat 3 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Feb 07 18:14:43 2001 +0000
+++ b/scripts/ChangeLog	Wed Feb 07 18:24:37 2001 +0000
@@ -1,3 +1,8 @@
+2001-02-07  David Livings <david.livings@asa.co.uk>
+
+	* statistics/base/ppplot.m: Use gset, not set.
+	* statistics/base/qqplot.m: Likewise.
+
 2001-02-05  Ondrej Popp <ondrej@geocities.com>
 
 	* control/system/c2d.m: Add missing endif.
--- a/scripts/statistics/base/ppplot.m	Wed Feb 07 18:14:43 2001 +0000
+++ b/scripts/statistics/base/ppplot.m	Wed Feb 07 18:24:37 2001 +0000
@@ -66,7 +66,7 @@
 
   if (nargout == 0)
     axis ([0, 1, 0, 1]);
-    set nokey;
+    gset nokey;
     plot (p, y);
   endif
 
--- a/scripts/statistics/base/qqplot.m	Wed Feb 07 18:14:43 2001 +0000
+++ b/scripts/statistics/base/qqplot.m	Wed Feb 07 18:24:37 2001 +0000
@@ -75,7 +75,7 @@
   if (nargout == 0)
     xlabel (q_label);
     ylabel ("sample points");
-    set nokey;
+    gset nokey;
     plot (q, s);
   endif