racket/collects/plot/demos/demo-6.rkt
2010-04-27 16:50:15 -06:00

9 lines
201 B
Racket

#lang 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)")