Audio tutorial demo

Kurt Nørmark
Department of Computer Science, Aalborg University, Denmark


Abstract

Index References Contents
This is a tutorial demo of the LENO audio facilities.

Page 1
Slide Annotated slide Contents Index
References Speak
This is page 1

Main point of page 1

  • Item 1

    • Subitem

  • Item 2

    • Subitem

  • Item 3

    • Subitem

Page 2
Slide Annotated slide Contents Index
References Speak
This is page 2

Main point of page 2

Program: The fac function. This is the classical recursive edition of fac.
;; Calculate the factorial of n.
;; .parameter n An integer
;; .pre-condition The integer must be non-negative.
;; .returns n!
(define (fac n)
  (if (= 0 n) 1 (* n (fac (- n 1)))))

Program: The fib function. This is the classical recursive edition of fib, which is very time consuming.
(define (fib n)
  (cond ((or (= n 0) (= n 1)) 1)
        (else (+ (fib (- n 1)) (fib (- n 2))))))

End remark of page 2

Page 3
Slide Annotated slide Contents Index
References Speak
This is page 3

Main point of page 3

Some annotation

  • Item 1

    • Subitem

  • Item 2

    • Subitem

  • Item 3

    • Subitem

Final end remark

 

Audio tutorial demo
Course home     Author home     About producing this web     Previous lecture (top)     Next lecture (top)     Previous lecture (bund)     Next lecture (bund)     
Generated: November 14, 2011, 09:22:41