Overview
Comment:Fixed size of gnuplot x11 window (400x300) to prevent window manager from creating very, very tiny plots.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: d8c22a9fe1921f4b4e5fe931b68ab974ea513c7a58fc978b44e6c46327ac41d4
User & Date: geraint@users.sourceforge.net on 2002-04-03 08:36:44.000
Other Links: branch diff | manifest | tags
Context
2002-04-08
17:04:21
Removed spurious "\n" from output. check-in: 2b7928b1e8 user: geraint@users.sourceforge.net tags: origin/master, trunk
2002-04-03
08:36:44
Fixed size of gnuplot x11 window (400x300) to prevent window manager from creating very, very tiny plots. check-in: d8c22a9fe1 user: geraint@users.sourceforge.net tags: origin/master, trunk
2002-04-02
09:16:39
Tidied up library search paths, now assumes that system libraries are set up correctly.
For Debian, this means installing the following: blas-dev, fftw-dev, lapack-dev, libncurses5-dev, libkpathsea-dev, libreadline-dev
It may also be necessary to run /sbin/ldconfig on the relevant directories (especially Octave's).
check-in: d707365e24 user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes
148
149
150
151
152
153
154
155

156
157
158
159
160
161
162
148
149
150
151
152
153
154

155
156
157
158
159
160
161
162







-
+








cat <<EOF >> ${out}

## call gnuplot
proc "plot_var" "title column" {
    exec echo plot \"${dat2}\" using 1:\$column title \"\$title\" with lines\; > ${tmp}
    exec echo exit\; >> ${tmp}
    exec gnuplot -persist -title "\$title" ${tmp} &
    exec gnuplot -geometry 400x300 -persist -title "\$title" ${tmp} &
}

## print output
proc "print" "parameter" {
    set filename [tk_getSaveFile\
	-initialdir ".."\
	-initialfile "\$parameter.ps"\

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]