I'm trying to develop an application similiar to the tonematrix in C#. I've tried first with .net and NAudio library, now I'm trying with XNA, but it seems like that all I can get is a cacophony.
With NAudio, I'm generating 8 simple sinewaves with differente frequencies, varying from (440hz * 1) to (440hz * 8).
With XNA, I'm using multiple SoundEffectInstance of the same audio file (like a D4 note of a piano), each one with a different Pitch value; the Pitch value can go up or down of a maximum of an octave.
In both cases, when the sounds overlap I'm getting noise instead of music. Maybe I got it all wrong and it is not a question of mixing sounds of varying pitch/frequency.
I find difficult to believe that the tonematrix is using nothing more than a "simple sinewave synthesizer", since the sounds are pretty rich and when they are mixed together they always generate an harmonic tune, while a simple sinewave is always sounding ugly and artificial to me.
Am I having a bad approach for creating harmonies? Do you have an idea of what is exactly happening to the sinewaves used by tonematrix?