Revisão | cfd508b1a2b9ff51c9b7314d77b19cc0f431e88a (tree) |
---|---|
Hora | 2007-07-27 19:01:44 |
Autor | iselllo |
Commiter | iselllo |
I added the file 3D_gnuplot.plt which can be used to read a matrix of
data and plot them. However, this is not done yet [I do not know yet
how to impose my own labels on the x and y axis and how to choose the
kind of font and so on].
@@ -0,0 +1,22 @@ | ||
1 | +reset | |
2 | +set terminal postscript enhanced color | |
3 | +# set palette color | |
4 | +set title 'Evolution of Particle Distribution' | |
5 | +set xlabel "D_{agg}" -3,-0.5 | |
6 | +set zlabel "dN/logD_{agg}" -12, -5 | |
7 | +set zrange [0:3e12] noreverse nowriteback | |
8 | + | |
9 | +set xrange[1:100] noreverse nowriteback | |
10 | +set view 70, 190, 1, 1 | |
11 | +set ticslevel 0.1 | |
12 | +set samples 51, 51 | |
13 | +set isosamples 20, 20 | |
14 | +set hidden3d offset 1 trianglepattern 3 undefined 1 altdiagonal bentover | |
15 | +set style data lines | |
16 | +set pm3d at s | |
17 | +set key off | |
18 | +splot "data_mat2" matrix with lines | |
19 | + | |
20 | +set output 'my_plot_distr.ps' | |
21 | +replot | |
22 | +set terminal x11 | |
\ No newline at end of file |