Overview
| Comment: | Added grid lines to plots. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
925efc10415723a314eea7e2b8481dda |
| User & Date: | geraint@users.sourceforge.net on 2002-04-18 16:45:20.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-04-18
| ||
| 17:02:15 | foo=zeros(3,1) translated as zero_state(foo,3) check-in: 2bcc856813 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 16:45:20 | Added grid lines to plots. check-in: 925efc1041 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-04-17
| ||
| 19:11:44 | sensitivity versions of lsin & cos check-in: ab94ad3c53 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2gnuplot_txt2wish
from [c9c1042299]
to [9db213a0b1].
| ︙ | ︙ | |||
146 147 148 149 150 151 152 |
' Title=\$title Ny=${Ny} ${struc} >> ${out}
cat <<EOF >> ${out}
## call gnuplot
proc "plot_var" "title column" {
| > | | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
' Title=\$title Ny=${Ny} ${struc} >> ${out}
cat <<EOF >> ${out}
## call gnuplot
proc "plot_var" "title column" {
exec echo set grid\; > ${tmp}
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\
|
| ︙ | ︙ |