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: |
0b4b76fad5597a46f85723754e374f7c |
| 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: 93f6afd1f9 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: 0b4b76fad5 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: c9e54fdc43 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2gnuplot_txt2wish
from [c3a77014e4]
to [c9c1042299].
| ︙ | ︙ | |||
148 149 150 151 152 153 154 |
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}
| | | 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 -geometry 400x300 -persist -title "\$title" ${tmp} &
}
## print output
proc "print" "parameter" {
set filename [tk_getSaveFile\
-initialdir ".."\
-initialfile "\$parameter.ps"\
|
| ︙ | ︙ |