Encog.ML.BasicML.GetPropertyDouble C# (CSharp) Method

GetPropertyDouble() public method

Get the specified property as a double.
public GetPropertyDouble ( String name ) : double
name String The name of the property.
return double
        public double GetPropertyDouble(String name)
        {
            return (CSVFormat.EgFormat.Parse((_properties[name])));
        }