User:Dtumpic

From Opentaps Wiki
Revision as of 18:49, 16 August 2007 by Dtumpic (talk | contribs) (New page: == Graph Testing #1== This uses the gnuplot extension: http://meta.wikimedia.org/wiki/Gnuplot <gnuplot> set output 'func_approx.png' plot '-' using 1:2 t 'quadratic approximation' wit...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Graph Testing #1

This uses the gnuplot extension: http://meta.wikimedia.org/wiki/Gnuplot

<gnuplot>
set output 'func_approx.png'
 plot '-' using 1:2 t 'quadratic approximation' with linesp lt 1 lw 3, \
 '-' using 1:2 t 'cubic approximation' with linesp lt 2 lw 3
 1 2
 2 4
 3 8
 4 16
 e
 1 3
 2 9
 3 27
 4 81
 e
</gnuplot>