« 1 : 2 : 3 : 4 : 5 : 6 : 7 : 8 : 9 »
import biggles import Numeric, math x = Numeric.arange( 0, 3*math.pi, math.pi/30 ) c = Numeric.cos(x) s = Numeric.sin(x) p = biggles.FramedPlot() p.title = "title" p.xlabel = r"$x$" p.ylabel = r"$\Theta$" p.add( biggles.FillBetween(x, c, x, s) ) p.add( biggles.Curve(x, c, color="red") ) p.add( biggles.Curve(x, s, color="blue") ) p.write_img( 400, 400, "example1.png" ) p.write_eps( "example1.eps" ) p.show() |
[ home ]
[ last modified Mar 09 2004 ]