[BACK]Return to linepoin.plt CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot / docs / latextut

File: [local] / OpenXM_contrib / gnuplot / docs / latextut / Attic / linepoin.plt (download)

Revision 1.1.1.1 (vendor branch), Sun Jan 9 17:01:07 2000 UTC (24 years, 5 months ago) by maekawa
Branch: GNUPLOT
CVS Tags: maekawa-ipv6, VERSION_3_7_3, VERSION_3_7_1, VERSION_3_7, RELEASE_20000124, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, RELEASE_1_1_2
Changes since 1.1: +0 -0 lines

Import gnuplot 3.7

# Plots all line types and point types
set term latex
set out "linepoin.tex"
set clip points
set dummy t,y
set nokey
set parametric
set samples 14	 # for trange 0:13, we get 14 points: 0, 1, ..., 13
set function style lines
set xtics 1,1,12
set ytics 1,1,6
set title "Up to 6 line types and 12 point types"
set trange [0 : 13]
set xlabel "Points"
set xrange [0 : 13]
set ylabel "Lines"
set yrange [0 : 7]
plot t,1, t,2, t,3, t,4, t,5, t,6, 1,t w p, 2,t w p, 3,t w p, 4,t w p,5,t w p, 6,t w p, 7,t w p, 8,t w p, 9,t w p, 10,t w p, 11,t w p, 12,t w p