Mercurial > hg > octave-avbm
comparison scripts/plot/__pltopt1__.m @ 6442:1896d9b1f302
[project @ 2007-03-23 16:10:33 by jwe]
author | jwe |
---|---|
date | Fri, 23 Mar 2007 16:10:33 +0000 |
parents | a8dd70bacc1e |
children | af8e28709a2c |
comparison
equal
deleted
inserted
replaced
6441:8bcceddab2d5 | 6442:1896d9b1f302 |
---|---|
56 options.linestyle = topt; | 56 options.linestyle = topt; |
57 elseif (topt == "+" || topt == "o" || topt == "*" | 57 elseif (topt == "+" || topt == "o" || topt == "*" |
58 || topt == "." || topt == "x" || topt == "s" | 58 || topt == "." || topt == "x" || topt == "s" |
59 || topt == "d" || topt == "^" || topt == "v" | 59 || topt == "d" || topt == "^" || topt == "v" |
60 || topt == ">" || topt == "<" || topt == "p" | 60 || topt == ">" || topt == "<" || topt == "p" |
61 || topt == "h") | 61 || topt == "h" || topt == "@") |
62 have_marker = true; | 62 have_marker = true; |
63 ## Backward compatibility. Leave undocumented. | |
64 if (topt == "@") | |
65 topt = "+"; | |
66 endif | |
63 options.marker = topt; | 67 options.marker = topt; |
64 elseif (topt == "k") | 68 elseif (topt == "k") |
65 options.color = [0, 0, 0]; | 69 options.color = [0, 0, 0]; |
66 elseif (topt == "r") | 70 elseif (topt == "r") |
67 options.color = [1, 0, 0]; | 71 options.color = [1, 0, 0]; |