racket/collects/plot/demos/demo-6.ss
2008-02-24 21:27:36 +00:00

8 lines
188 B
Scheme

(require plot)
(define (trig x y) (* (sin x) (sin y)))
(plot (contour trig)
(x-min -1.5) (x-max 1.5) (y-min -1.5) (y-max 1.5)
(title "contours of F(x,y) = sin(x) * sin(y)"))