Jump to content

Recommended Posts

Here is a rather simple function that might be useful for others as well. 

 

The function rotate-omn rotates a sequence by the given number of positions, much like gen-rotate. However, you can specify which parameter you want to rotate, whether you want to rotate the flattened sequence or subsequences separately, or only certain subsequences. 

(setf melody '((-h q c4) (q. f4 e g4 q a4) (h. g4)))

(rotate-omn :right melody) 
; => ((-h q g4) (q. c4 e f4 q g4) (h. a4))

(rotate-omn :left melody :parameter :length) 
; => ((q c4 q. f4 e g4) (q a4 h g4 tie) (q g4 -h))

(rotate-omn 2 melody :section '(1) :flat nil)
; => ((-h q c4) (q. g4 e a4 q f4) (h. g4)) 

 

The function is part of my tot library (http://github.com/tanders/tot). It is a generalisation of the built-in gen-rotate, again with a short definition calling my function edit-omn. 

 

Best,

Torsten

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy