Encog.Util.Normalize.Output.Mapped.MappedRange.InRange C# (CSharp) Méthode

InRange() public méthode

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