namespace NAudio.Dsp { /// /// Type to represent complex number /// public struct Complex { /// /// Real Part /// public float X; /// /// Imaginary Part /// public float Y; } }