Re: [haskell-art] Haskell art?

2011-03-12 Thread Hudak, Paul
> On Fri, Feb 25, 2011 at 5:58 AM, Hudak, Paul wrote: >> First, you can label any Music value with any instrument. For example: >> >> instrument Flute m1 :=: instrument Violin m2 >> >> This is a Music value that plays m1 with a flute in parallel with m2 with a >> violin. But Flute and Viol

Re: [haskell-art] Live Performing With Haskell

2011-03-12 Thread Henning Thielemann
On Fri, 11 Mar 2011, aditya siram wrote: Hi all, I'd like to get into live coding with Haskell. Can you recommend a good enviroment? I run Ubuntu Linux. I've looked into Haskore withn Supercollider but it doesn't seem suited to live performance like something like Chuck or Impromptu. Is there s

Re: [haskell-art] ANN: temporal-music-notation - edsl for creating music scores

2011-03-12 Thread Anton Kholomiov
Updated again, conversion to midi should become faster thanks to Henning Thielemann for useful guides on logarithms and optimization. ___ haskell-art mailing list haskell-art@lurk.org http://lists.lurk.org/mailman/listinfo/haskell-art

Re: [haskell-art] data structure for music (Was: Haskell art?)

2011-03-12 Thread Anton Kholomiov
By 'Music a' I mean tree-like structure with tags 'parallel/sequence' in nodes and values of 'a' in lists (with durations). For signals: parallel a b == a + b sequential a b == a + delay (dur a) b And then if function is linear for signals it doesn't matter if 'Music Signal' is already turned in