From maintainers-request at octave dot org Sat Nov 20 17:07:19 2004 Subject: Re: Plotting a black line From: "Dmitri A. Sergatskov" To: help at octave dot org CC: maintainers at octave dot org Date: Sat, 20 Nov 2004 16:04:48 -0700 In current version of gnuplot one can define "linestyle": set style line {linetype | lt } {linewidth | lw } {pointtype | pt } {pointsize | ps } {palette} I believe this functionality is unavailable from octave plot() command. How much trouble would it be to add extra format to plot() command (say "sN, where "s" is for "style" is for N is integer > 0) to make a plot with linestyle N (previously defined). This way one can constract a big variety of custom linetypes and do things like gset style line 13 lt -1 lw 0.5 ps 2 plot(x,y,"- at s13;label;") The "gset style ..." perhaps can be wrapped into some octave command as well. (Incidentally, linetype "-1" will make requested black line on both X11 and postscript terminals) Sincerely, Dmitri. --