PasteRack.org
Paste # 70144
2019-08-15 18:53:29

Fork as a new paste.

Paste viewed 602 times.


Embed:

  1. #lang racket
  2.  
  3. (require plot)
  4.  
  5. (define (f x) (* x (exp (- x))))
  6.  
  7. (plot (list
  8.        (tick-grid)
  9.        (function f 0 5)))

=>