SUNY Geneseo Department of Mathematics
Wednesday, April 22
Math 222 01
Spring 2015
Prof. Doug Baldwin
spiral = function( ) {
k = 2.5
t = seq( 0, 2*pi, length=100 )
x = k * t * cos(t)
y = k * t * sin(t)
plot( x, y, type="l", col="red" )
}