PasteRack.org
Paste # 19060
2016-07-15 13:10:09

Forked from paste # 95273.

Fork as a new paste.

Paste viewed 372 times.


Embed:

  1. #lang racket
  2.  
  3. (define min -5)
  4. (define max 7)
  5.  
  6. (define (generate)
  7.   (for/list ((i (in-range 3)))
  8.             (for/list ((i (in-range 6)))
  9.                       (+ (random (+ 1 (- max min))) min))))
  10.  
  11. (define (root-mean-square x)
  12.   (sqrt (/ (foldl + 0 (map sqr x)) (length x))))
  13.  
  14. (define (odd-and-even x)
  15.   (define odd '())
  16.   (define even '())
  17.   (for ((el x)
  18.         (i (in-range (length x))))
  19.        (if (odd? i)
  20.            (append odd el)
  21.            (append even el)))
  22.   (list odd even))
  23.  
  24. (define r (generate))
  25.  
  26. (displayln "Matrix:")
  27. (for-each displayln r)
  28.  
  29. (displayln "List:")
  30. (define s (flatten r))
  31. (displayln s)
  32.  
  33. (displayln "Root mean square of ...:")
  34. (displayln (root-mean-square (filter (lambda (x) (> x 0))
  35.                                      (drop s (/ (length s) 2)))))
  36.  
  37. (displayln "Two minimal elements of ...:")
  38. (displayln (take 2 (sort (first
  39.                           (odd-and-even
  40.                            (take  (drop s (/ (length s) 3)) (/ (length s) 3)))))))

=>

Matrix:

(-3 2 7 3 -1 -3)

(-2 7 -3 -3 1 7)

(6 -4 -5 2 1 -4)

List:

(-3 2 7 3 -1 -3 -2 7 -3 -3 1 7 6 -4 -5 2 1 -4)

Root mean square of ...:

4.266145801540309

Two minimal elements of ...:

sort: arity mismatch;

 the expected number of arguments does not match the given

number

  expected: 2 plus optional arguments with keywords

#:cache-keys? and #:key

  given: 1

  arguments...:

   '()