| tplotmatrix.gp - werner - cellular automata simulation of wind-driven sand tran… | |
| git clone git://src.adamsgaard.dk/werner | |
| Log | |
| Files | |
| Refs | |
| LICENSE | |
| --- | |
| tplotmatrix.gp (390B) | |
| --- | |
| 1 #!/usr/env gnuplot | |
| 2 | |
| 3 # plot matrix file. Invoke with: | |
| 4 # $ gnuplot -e "matrixfile='file.txt'" plotmatrix.gp | |
| 5 | |
| 6 set terminal pngcairo | |
| 7 set output matrixfile.".png" | |
| 8 | |
| 9 set size ratio -1 | |
| 10 | |
| 11 set title "Werner model for aeolian transport and deposition" | |
| 12 set xlabel "x" | |
| 13 set ylabel "y" | |
| 14 set cblabel "sand slabs" | |
| 15 | |
| 16 # With interpolation | |
| 17 set pm3d map interpolate 0,0 | |
| 18 set palette gray | |
| 19 splot matrixfile matrix | |
| 20 |