18 lines
328 B
C#
18 lines
328 B
C#
namespace NAudio.Dsp
|
|
{
|
|
/// <summary>
|
|
/// Type to represent complex number
|
|
/// </summary>
|
|
public struct Complex
|
|
{
|
|
/// <summary>
|
|
/// Real Part
|
|
/// </summary>
|
|
public float X;
|
|
/// <summary>
|
|
/// Imaginary Part
|
|
/// </summary>
|
|
public float Y;
|
|
}
|
|
}
|