changeset 6085:76e3715e31db

[project @ 2006-10-25 12:43:30 by jwe]
author jwe
date Wed, 25 Oct 2006 12:43:30 +0000
parents 38114c34b44a
children 4278b170b9f9
files scripts/ChangeLog scripts/plot/__pltopt1__.m
diffstat 2 files changed, 22 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Oct 25 03:52:48 2006 +0000
+++ b/scripts/ChangeLog	Wed Oct 25 12:43:30 2006 +0000
@@ -1,3 +1,7 @@
+2006-10-25  Søren Hauberg  <soren@hauberg.org>
+
+	* plot/__pltopt__.m: Update symbol marker id numbers for gnuplot 4.
+
 2006-10-24  Bill Denney  <denney@seas.upenn.edu>
 
 	* miscellaneous/unpack.m, miscellaneous/bunzip2.m,
--- a/scripts/plot/__pltopt1__.m	Wed Oct 25 03:52:48 2006 +0000
+++ b/scripts/plot/__pltopt1__.m	Wed Oct 25 12:43:30 2006 +0000
@@ -147,19 +147,31 @@
     elseif (strcmp (char, "*"))
       set_points = 1;
       set_symbol = 1;
+      symbol = "3";
+    elseif (strcmp (char, "+"))
+      set_points = 1;
+      set_symbol = 1;
+      symbol = "1";
+    elseif (strcmp (char, "o"))
+      set_points = 1;
+      set_symbol = 1;
       symbol = "6";
-    elseif (strcmp (char, "+"))
+    elseif (strcmp (char, "x"))
       set_points = 1;
       set_symbol = 1;
       symbol = "2";
-    elseif (strcmp (char, "o"))
-      set_points = 1;
-      set_symbol = 1;
-      symbol = "1";
-    elseif (strcmp (char, "x"))
+    elseif (strcmp (char, "s"))
       set_points = 1;
       set_symbol = 1;
       symbol = "4";
+    elseif (strcmp (char, "d"))
+      set_points = 1;
+      set_symbol = 1;
+      symbol = "12";
+    elseif (strcmp (char, "v"))
+      set_points = 1;
+      set_symbol = 1;
+      symbol = "10";
     elseif (strcmp (char, ";"))  # title mode.
       working = 1;
       while (working)