File: nonlinear3.dem

package info (click to toggle)
gnuplot 5.2.6%2Bdfsg1-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,968 kB
  • sloc: ansic: 81,983; cpp: 7,323; makefile: 2,186; sh: 1,542; lisp: 667; perl: 302; pascal: 194; tcl: 88; python: 46
file content (41 lines) | stat: -rw-r--r-- 968 bytes parent folder | download | duplicates (2)
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
# This example shows how a nonlinear axis definition can be used to 
# set up "probability axis" scaling on both the x and y axes.
# This is also known as "probit" scaling.
# We compare 3 treatments of an image file (Tux).
# They differ in the sigma value defining the normal distribution curve
# used for scaling.
# The 4th plot shows the original, unscaled image using linear axes.
#
unset border
set title offset 0,-1

set multiplot layout 2,2 title "Probability axes:  Scale image pixels by distance from center treated as a Z-score"

set title "Sigma = 22 pixels"
sigma = 22.
ticinterval = 2
load 'probably_tux.dem'

set title "Sigma = 30 pixels"
sigma = 30.
ticinterval = 1
load 'probably_tux.dem'

set title "Sigma = 60 pixels"
sigma = 60.
load 'probably_tux.dem'

set title "Linear Scale"
set label 1 "Tux"
set xlabel "   "
set ylabel "   "
unset nonlinear x
unset nonlinear y
unset xtics
unset ytics
replot

unset multiplot

pause -1 "<cr> to continue"
reset