1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
## Copyright (C) 1996, 1997 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, write to the Free
## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
## usage: fmt = __pltopt1__ (caller, opt)
##
## Really decode plot option strings.
##
## See also: __pltopt__
## Author: Rick Niles <niles@axp745.gsfc.nasa.gov>
## Adapted-By: jwe
## Maintainer: jwe
function fmt = __pltopt1__ (caller, opt)
set_color = 0;
set_symbol = 0;
set_lines = 0;
set_dots = 0;
set_points = 0;
set_impulses = 0;
set_steps = 0;
set_boxes = 0;
set_errbars = 0;
set_key = 0;
more_opts = 1;
WITH = "w";
LINES = "l";
LINESPOINTS = "linesp";
BOXERRORBARS = "boxer";
BOXES = "boxes";
POINTS = "p";
DOTS = "d";
IMPULSES = "i";
STEPS = "s";
ERRORBARS = "e";
TITLE = "title";
if (nargin != 2)
usage ("__pltopt1__ (opt)");
endif
if (! isstr (opt))
error ("__pltopt1__: argument must be a string");
endif
while (more_opts)
## First get next char.
if (max (size (opt)) > 1)
# [char, opt] = sscanf (opt, "%c %s", "C");
char = opt(1);
opt = opt(2:length(opt));
else
char = opt;
more_opts = 0;
endif
## Now set flags based on char.
if (strcmp (char, "-"))
set_lines = 1;
elseif (strcmp (char, "."))
set_dots = 1;
elseif (strcmp (char, "@"))
set_points = 1;
elseif (strcmp (char, "^"))
set_impulses = 1;
elseif (strcmp (char, "L"))
set_steps = 1;
elseif (strcmp (char, "~"))
set_errbars = 1;
elseif (strcmp (char, "#"))
set_boxes = 1;
elseif (strcmp (char, "0") || strcmp (char, "1") ...
|| strcmp (char, "2") || strcmp (char, "3") ...
|| strcmp (char, "4") || strcmp (char, "5") ...
|| strcmp (char, "6") || strcmp (char, "7") ...
|| strcmp (char, "8") || strcmp (char, "9"))
if (set_color)
set_points = 1;
symbol = char;
set_symbol = 1;
else
color = char;
set_color = 1;
endif
elseif (strcmp (char, "r"))
set_color = 1;
color = "1";
elseif (strcmp (char, "g"))
set_color = 1;
color = "2";
elseif (strcmp (char, "b"))
set_color = 1;
color = "3";
elseif (strcmp (char, "m"))
set_color = 1;
color = "4";
elseif (strcmp (char, "c"))
set_color = 1;
color = "5";
elseif (strcmp (char, "w") || strcmp (char, "k"))
set_color = 1;
color = "6";
elseif (strcmp (char, "*"))
set_points = 1;
set_symbol = 1;
symbol = "6";
elseif (strcmp (char, "+"))
set_points = 1;
set_symbol = 1;
symbol = "2";
elseif (strcmp (char, "o"))
set_points = 1;
set_symbol = 1;
symbol = "1";
elseif (strcmp (char, "x"))
set_points = 1;
set_symbol = 1;
symbol = "4";
elseif (strcmp (char, ";")) # title mode.
set_key = 1;
working = 1;
key_title = "";
while (working)
if (max (size (opt)) > 1)
char = opt(1);
opt = opt(2:length(opt));
else
char = opt;
if (! strcmp (char, ";"))
error ("%s: unfinished key label", caller);
end
more_opts = 0;
working = 0;
endif
if strcmp (char, ";")
working = 0;
else
if (isempty (key_title)) # needs this to avoid empty matrix warning.
key_title = char;
else
key_title = strcat (key_title, char);
endif
endif
endwhile
elseif (strcmp (char, " "))
## whitespace -- do nothing.
else
error ("%s: unrecognized format character: '%s'", caller, char);
endif
endwhile
## Now create format string.
fmt = WITH;
if (set_lines)
if (set_points)
fmt = strcat (fmt, " ", LINESPOINTS);
else
fmt = strcat (fmt, " ", LINES);
endif
elseif (set_boxes)
if (set_errbars)
fmt = strcat (fmt, " ", BOXERRORBARS);
else
fmt = strcat (fmt, " ", BOXES);
endif
elseif (set_points)
fmt = strcat (fmt, " ", POINTS);
elseif (set_dots)
fmt = strcat (fmt, " ", DOTS);
elseif (set_impulses)
fmt = strcat (fmt, " ", IMPULSES);
elseif (set_steps)
fmt = strcat (fmt, " ", STEPS);
elseif (set_errbars)
fmt = strcat (fmt, " ", ERRORBARS);
endif
if (strcmp (fmt, WITH))
fmt = strcat (fmt, " ", LINES);
endif
if (set_color)
fmt = strcat (fmt, " ", color);
if (set_symbol)
fmt = strcat (fmt, " ", symbol);
endif
elseif (set_symbol)
fmt = strcat (fmt, " 1 ", symbol);
endif
if (set_key)
fmt = sprintf ("%s %s \"%s\" ", fmt, TITLE, key_title);
endif
endfunction
|