changeset 4020:ca18dc3d5596

[project @ 2002-08-05 16:50:37 by jwe]
author jwe
date Mon, 05 Aug 2002 16:50:37 +0000
parents c6d7ae9fcdb9
children 963507f8caf4
files scripts/ChangeLog scripts/plot/__errcomm__.m
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Aug 05 16:42:36 2002 +0000
+++ b/scripts/ChangeLog	Mon Aug 05 16:50:37 2002 +0000
@@ -1,3 +1,8 @@
+2002-08-05  Teemu Ikonen <tpikonen@pcu.helsinki.fi>
+
+	* plot/__errcomm__.m: If format is not specified, default to error
+	bar format.
+
 2002-08-01  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not
--- a/scripts/plot/__errcomm__.m	Mon Aug 05 16:42:36 2002 +0000
+++ b/scripts/plot/__errcomm__.m	Mon Aug 05 16:50:37 2002 +0000
@@ -56,7 +56,6 @@
       sz = size (a);
       ndata = 1;
       arg1 = a;
-      fmt = " ";
       while (nargin)
 	nargin--;
 	a = varargin{k++};
@@ -87,7 +86,7 @@
     endwhile
 
     if (! isstr (a))
-      fmt = " ";
+      fmt = "~";
       cmd = "__errplot__ (arg1";
       for i = 2:ndata,
 	cmd = sprintf ("%s, arg%d", cmd, i);