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

MappedRange() public méthode

Construct the range mapping.
public MappedRange ( double low, double high, double value ) : System
low double The low value for the range.
high double The high value for the range.
value double The value that this range represents.
Résultat System
        public MappedRange(double low, double high, double value)
        {
            _low = low;
            _high = high;
            _value = value;
        }