SDRSharper/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/ComplexHelper.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

16 lines
276 B
C#

using SDRSharp.Radio;
using System;
namespace SDRSharp.NoiseReduction
{
internal static class ComplexHelper
{
public static float FastMagnitude(this Complex c)
{
float val = Math.Abs(c.Real);
float val2 = Math.Abs(c.Imag);
return Math.Max(val, val2);
}
}
}