home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 2.2 KB | 48 lines | [TEXT/ScoM] |
- HOW TO FIND 2 LAST SYMBOLS
-
- >The problem: given a length-list x whose sum EXCEEDS the duration of a zone,
- >there's no easy way to find the last n symbols in the zone.
-
- I see. It relates to a problem with classes which must precalculate
- zone material before constructing expanded zone lists for the
- compiler. Basicly you can do that walking symbol list while
- summing up te absolute value of the ticks of the each length and
- comparing when the sum exceeds the given zone tick value, and
- presto, return the rest of the symbols. Check out if you can apply
- these.
-
- ; (symbol-divide-zone '(a b c d e f g) '((1/4 -1/4) (1/8 -1/8)) '(1/2 1/2 1/2 1/2))
- ; (symbol-divide-zone '(a (1- b)) '((1/4) (1/8 -1/8)) '(1/2 1/2 1/2 1/2))
- ; (symbol-divide-zone '(a b c d e f g) '((1/4) (1/8)) '(1/2 -1/2 1/2))
- ; ((a b) nil (c d))
- ; (symbol-divide-zone '((a b) (c d) (e f)) '((1/4) (1/8)) '(1/2 -1/2 1/2))
- ; ((a b) nil (c d))
- ; (symbol-divide-zone '((a b) (c d) (e f)) '((1/4)) '(1/2 -1/2 1/2))
- ; ((a b) nil (c d))
-
- ;(symbol-divide-zone '((1 2) (3 4) (5 6))
- ; '((1/16) (1/8) (1/4))
- ; '(1/1 1/1 1/1))
- ;(symbol-divide-zone '((1 2) (3 4) (5 6))
- ; '((1/16) (1/8) (1/4))
- ; '(1/1 -1/1 1/1))
- ;(symbol-divide-zone '((0)) '((1/16)) '(2/1))
- ;((0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0))
- ;(symbol-divide-zone '((0 150)) '((1/16)) '(2/4 3/4 4/4))
- ;(symbol-divide-zone '((80 60 70 65)) '((1/16)) '(2/4 3/4 3/4 1/4 2/4 1/8 3/4 2/2 1/4 5/4 6/4 1/4))
-
- ;(symbol-divide-zone2 '(1 2 3 4 5) '(1/16) '(1/1 1/1 1/1))
- ;(symbol-divide-zone2 '(a b c d e f g) '(1/16) '(1/2 1/2))
- ;(symbol-divide-zone2 '(a b c d e f g) '(1/4) '(1/2 -1/2 1/2))
- ;(symbol-divide-zone2 '(= b c) '(1/8 1/16 1/16) '(5/8))
- ;(symbol-divide-zone2 '((1 2 3) (3 4) (5 6)) '(1/4) '(1/1 1/1 1/1))
- ;(symbol-divide-zone2 '((1 2 3) (3 4) (5 6)) '(1/4) '(1/1 -1/1 1/1))
-
- ; (length-divide-zone '(nil (a b c) (a b)) '(-1/2 1/4) '(1\/1 1\/1 1\/1))
- ; (length-divide-zone '(nil (a b c) (a b)) '(1/2 1/4) '(1\/1 -1\/1 1\/1 -1\/1 1\/1))
-
- ; length-divide-zone2 works with flat symbol list
- ; (length-divide-zone2 '(a b c) '(1/2 1/4) '(1\/1 1\/1 1\/1))
- ; (length-divide-zone2 '(a b c) '(1/2 1/4) '(1\/1 -1\/1 1\/1))
-
-