https://github.com/derekxkwan/pdklex
multipurpose list externals for pure data
https://github.com/derekxkwan/pdklex
externals list puredata
Last synced: 7 months ago
JSON representation
multipurpose list externals for pure data
- Host: GitHub
- URL: https://github.com/derekxkwan/pdklex
- Owner: derekxkwan
- License: gpl-3.0
- Created: 2017-03-09T00:17:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T10:32:51.000Z (over 8 years ago)
- Last Synced: 2025-01-18T04:14:06.840Z (9 months ago)
- Topics: externals, list, puredata
- Language: Makefile
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pdklex
multipurpose list externals for pure data- dklmunge - list processor/munger. Here are the methods I've added so far:
- none - do nothing
- avg - sums all float args and divides by number of ALL elts
- everyn (f=n, f=offset) - output every nth elt with offset
- faro - faro shuffle
- fyshuf - fisher-yates shuffle
- group (f) - output in groups of f prepended by l0,l1,.....
- indexof (f/s) - returns index of given else -1
- max - max of all float elts
- min - min of all float elts
- ref (f/s) - returns sublist starting at given f or s if found
- relt (f list) - random elt selection: 1 arg specifies number (if given), rest specify weights
- rev - reverse list
- revrot (f) - reverse then rotate list
- rot (f) - rotate list
- rpt1 (f=idx, f=rpt, pairs) - takes pairs, repeats idx rpt times
- sum - adds all float args together
- prod - multiplies all float args together- dklgen - list generator
- fib - generates fibonacci numbers
- pell - generates pell numbers
- randfu - generates a list of uniformly random floats
- randiu - generates a list of uniformly random ints
- rpt1 - given pairs of atoms and times, repeats atoms for a list