read

[CODE]
(define (square x) (* x x))
(define (tan-cf x k)
  (define (d-tan i) (- (* 2 i) 1))
  (define (n-tan i)
    (if (= i 1)
        x
        (square x)))
  (cont-frac n-tan d-tan k))
[/CODE]

Blog Logo

Ki Sung Bae


Published

Image

Gsong's Blog

Developer + Entrepreneur = Entreveloper

Back to Overview