File: borders.dem

package info (click to toggle)
gnuplot 4.6.0-8
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 16,920 kB
  • sloc: ansic: 84,661; cpp: 6,631; lisp: 5,013; makefile: 2,129; sh: 1,092; objc: 647; asm: 539; perl: 298; awk: 235; pascal: 194; csh: 179; tcl: 88; python: 46
file content (19 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# $Id: borders.dem,v 1.10.2.1 2012/01/09 05:06:39 sfeam Exp $
#
unset grid
set xrange [0:10]
set yrange [0:10]
set format ""
#
set multiplot layout 4, 4 title "Demonstration of different border settings"
do for [bb = 0:15] {
    set border bb
    show border
    set label 1 sprintf("Border = %.0f",bb)  at 5,5 center
    plot 1/0 notitle
}
unset multiplot

pause -1 "Hit return to continue"