
born
Members-
Posts
46 -
Joined
-
Last visited
Contact Methods
- Website URL
Profile Information
-
Gender
Male
-
Location
Austria
Recent Profile Visitors
2,628 profile views
-
born started following Open web link in Assistant? , fill-space function , merge lengths with same pitches and 1 other
-
Hi, attached is a function I wrote for a piece. Does anybody have an idea how to extend this with a seed functionality. I have tried a few things but so far without any real success ... The other thing: It can take quite a while until a possible solution ist found. Does anybody have an idea to improve the calculation speed? Thanks and best, Achim fill-space.opmo
-
Stephane Boussuge reacted to a post in a topic: merge lengths with same pitches
-
Thanks a lot Stephane, that helps. Achim
-
Does anybody know how to merge lengths with same pitches? (e c4 c4 e. c4 q c4 s c4 e eb4 e. eb4 h eb4 e. eb4 q eb4) => (h. c4 wq eb4) Thanks for help, Achim
-
AM reacted to a post in a topic: Find all combinations that add upto given number
-
resolved Find all combinations that add upto given number
born replied to born's topic in Function Examples
I use this to select different unique modules for Live-Electronics. Here ist my adapted function: (defun comb-to-sum (n &key (reps t)) (let* ((nums (gen-integer 1 n)) (x 0) (result (find-unique (sort-asc (flatten-sublist (loop repeat n for i = (combination2 (incf x) nums) collect (loop for c in i if (= (sum c) n) collect c))))))) (if reps result (loop for i in result when (equal (sum (remove-duplicates i)) n) collect i)))) (comb-to-sum 5 :reps nil) ; => ((5) (1 4) (2 3)) -
resolved Find all combinations that add upto given number
born replied to born's topic in Function Examples
I would actually need ALL possibilities … -
Is something like this implemented in OM or has anybody written a function for it? Input: N = 3 Output: 1 1 1 1 2 3 Input: N = 5 Output: 1 1 1 1 1 1 1 1 2 1 1 3 1 2 2 1 4 2 3 5 see: https://www.geeksforgeeks.org/find-all-combinations-that-adds-upto-given-number-2/ Best, Achim
-
Is this feature still existing? Achim
-
Opusmodus on a Windows Machine (using VMWare)
born replied to Wim Dijkgraaf's topic in Suggestions & Ideas
Hello Julio, could you repost this video. It seems to be offline. Thanks, Achim -
Hi all, has anyone written a function that calculates the total duration of a score (including tempo changes and fermatas) in minutes and seconds? Achim
-
Hi, how can I add a Glockenspiel instrument to the GM-Instrument-Set? Best, Achim
-
JulioHerrlein reacted to a post in a topic: Inspiring Idea For Rhythm (with Nested Tuplets)
-
Inspiring Idea For Rhythm (with Nested Tuplets)
born replied to JulioHerrlein's topic in Function Examples
see: OpenMusic Documentation - Rhythm Trees Structure SUPPORT.IRCAM.FR Best, Achim -
Is it possible to span the pedal notation over several measures with notes and rests? Thanks for help. Achim ... and how do I have to set the controllers in the def-score accordingly? Best, Achim
-
Hi, is there a function for distributing one voice successively into a defined number of voices as described in my attachment? Best, Achim
-
Hi everybody, how can I extract specific measures from voices in a score and merge them to a new voice. Thanks for help. Achim
-
In my understanding it should be exactly as notated, not interpreted.