Encog.Util.Normalize.Output.Mapped.MappedRange.InRange C# (CSharp) Method

InRange() public method

Determine if the specified value is in the range.
public InRange ( double d ) : bool
d double The value to check.
return bool
        public bool InRange(double d)
        {
            if ((d >= _low) && (d <= _high))
            {
                return true;
            }
            return false;
        }
    }