gnuplot, komut satırından girilen fonksiyon ya da verilere uygun iki veya üç boyutlu grafik çizme programıdır. Çizilen grafikler kalitesinden dolayı akademik çalışmalarda kullanılır. Program başlıca işletim sistemleri üzerinde çalışabilir GNU/Linux, UNIX, Windows, Mac OS X ve diğerleri). Program 1986 yılından beri geliştiriliyor.
[html]Kaynak: http://tr.wikipedia.org/wiki/Gnuplot[/html]
:::::::::::::::deneme::::::::::::::::::::::::
%CODE2%
Term |
SVG
PNG |
||
[gplot]
%CODE2%
[/gplot]
:::::::::::::::deneme::::::::::::::::::::::::
1 2 3 |
set size 0.75, 0.3 set xrange[0:5] plot sin(x) title "sin(x)", sin(2*x) title "sin(2x)" |
[gplot]
set size 0.75, 0.3
set xrange[0:5]
plot sin(x) title “sin(x)”, sin(2*x) title “sin(2x)”
[/gplot]
1 2 3 4 5 6 7 8 9 10 11 12 |
set size 1,0.7 set dummy u,v unset key set parametric set view 60, 30, 1.1, 1.33 set isosamples 50, 20 set title "Interlocking Tori - PM3D surface with depth sorting" set urange [ -3.14159 : 3.14159 ] noreverse nowriteback set vrange [ -3.14159 : 3.14159 ] noreverse nowriteback set pm3d depthorder splot cos(u)+.5*cos(u)*cos(v),sin(u)+.5*sin(u)*cos(v),.5*sin(v) with pm3d,\ 1+cos(u)+.5*cos(u)*cos(v),.5*sin(v),sin(u)+.5*sin(u)*cos(v) with pm3d |
[gplot]
set size 1,0.7
set dummy u,v
unset key
set parametric
set view 60, 30, 1.1, 1.33
set isosamples 50, 20
set title “Interlocking Tori – PM3D surface with depth sorting”
set urange [ -3.14159 : 3.14159 ] noreverse nowriteback
set vrange [ -3.14159 : 3.14159 ] noreverse nowriteback
set pm3d depthorder
splot cos(u)+.5*cos(u)*cos(v),sin(u)+.5*sin(u)*cos(v),.5*sin(v) with pm3d,\
1+cos(u)+.5*cos(u)*cos(v),.5*sin(v),sin(u)+.5*sin(u)*cos(v) with pm3d
[/gplot]
Online gnuplot
http://gnuplot.respawned.com/#
http://toycompute.net/?page_id=55