home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 3
/
TheARMClub_PDCD3.iso
/
hensa
/
programming
/
python
/
python_1
/
!Graph_examples_Powers
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-08-20
|
199 b
|
20 lines
; test of graph
xrange -.25 1
yrange 0 1
grid .2 .2
axes 0 0
title Powers of x
colour green
plot x
colour red
plot x*x
colour blue
plot x*x*x
colour yellow
plot pow(x,4)
colour cyan
plot pow(x,5)