42 lines
707 B
Gnuplot
42 lines
707 B
Gnuplot
## BTff.gp 11/27/16 aev
|
|
## Plotting 6 Brownian tree pictures.
|
|
## dat-files are PARI/GP generated output files:
|
|
## http://rosettacode.org/wiki/Brownian_tree#PARI.2FGP
|
|
#cd 'C:\gnupData'
|
|
|
|
##BT1
|
|
clr = '"dark-green"'
|
|
filename = "BTAH1"
|
|
ttl = "Brownian Tree v.#1"
|
|
load "plotff.gp"
|
|
|
|
##BT2
|
|
clr = '"brown"'
|
|
filename = "BTOC1"
|
|
ttl = "Brownian Tree v.#2"
|
|
load "plotff.gp"
|
|
|
|
##BT3
|
|
clr = '"navy"'
|
|
filename = "BTSE1"
|
|
ttl = "Brownian Tree v.#3"
|
|
load "plotff.gp"
|
|
|
|
##BT41
|
|
clr = '"red"'
|
|
filename = "BTPB1"
|
|
ttl = "Brownian Tree v.#4-1"
|
|
load "plotff.gp"
|
|
|
|
##BT42
|
|
clr = '"red"'
|
|
filename = "BTPB2"
|
|
ttl = "Brownian Tree v.#4-2"
|
|
load "plotff.gp"
|
|
|
|
##BT43
|
|
clr = '"red"'
|
|
filename = "BTPB3"
|
|
ttl = "Brownian Tree v.#4-3"
|
|
load "plotff.gp"
|