-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
91 lines (53 loc) · 1.69 KB
/
README
File metadata and controls
91 lines (53 loc) · 1.69 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
These instructions and directories were obtained from:
git clone http://github.com/milfeld/class
Instructions:
In each of the following directories there is
a do file. They have the gnuplot commands to
create a plot. Any special instructions are
included in a README file in the directory.
Use the commands in the do files to create
a gnuplot. Perform them in the following order:
basics
function
hist
multiplot
smooth
param
splot
png
advanced
There are 4 ways to generate the plots.
1.) This is the simple way.
cat the "do" file:
$ cat do
highlight the listed commands into your copy buffer.
Execute gnuplot:
$ gnuplot
At the gnuplot prompt, paste the commands.
gnuplot> <-----PASTED COMMANDS HERE
--------------------------------------------------
2.) Enter the command individually.
List the command in the "do" file:
$ cat do
Execute gnuplot:
$ gnuplot
At the gnuplot prompt type in each commands
gnuplot> <-----Type in each command
3.) Run the commands as a batch script.
Execute gnuplot:
$ gnuplot
Load up the do file at the gnuplot prompt:
gnuplot> load 'do'
4.) Run the commands as an argument to gnuplot command.
copy the "do" file to "do_cmdline"
At the end of do_cmdline add:
pause -1 "Hit any key to continue"
include the do_cmdline file name on the gnuplot command line:
$ gnuplot do_cmdline
There is actually another way to do this by executing a file
with the commands in them, e.g. something like "do_cmd" will
execute the plot. See the instructions in the smooth directory.
Need help?
man gnuplot
or
gnuplot> help <subject_name>