pc:invert   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pc_ivl.xtm

Implementation

;; invert the values of lst quantizing to pc
(define pc:invert
   (lambda (lst pc . args)
      (if (null? args)
          (pc:quantize-list (ivl:invert lst) pc)
          (pc:quantize-list (ivl:invert lst (car args)) pc))))


Back to Index

Similar Entries