[BACK]Return to steps.dem CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot / demo

File: [local] / OpenXM_contrib / gnuplot / demo / Attic / steps.dem (download)

Revision 1.1, Sun Jan 9 17:01:03 2000 UTC (24 years, 4 months ago) by maekawa
Branch: MAIN

Initial revision

#This file will serve as the datafile used in demonstrating the 
#"plot with steps" option.   Here is a gnuplot input file
#which uses "plot with steps", inverse error function, normal
#distribution function, and the inverse normal distribution
#function.
set title "Compare steps, fsteps and histeps"
plot [0:12][0:13] "steps.dat" notitle with points,  \
 "steps.dat" title 'steps' with steps, \
 'steps.dat' title 'fsteps' with fsteps, \
 'steps.dat' title 'histeps' with histeps

pause -1 "Hit return for normal distribution function."
set title "Normal Distribution Function"
plot [-3:3][0:1] norm(x)

pause -1 "Hit return for inverse error function."
set title "Inverse Error Function"
plot [-1:1] inverf(x)

pause -1 "Hit return for inverse normal distribution function."
set title "Inverse Normal Distribution Function"
plot [0:1] invnorm(x)

set title ""