Encog.Util.Format.FormatPercent C# (CSharp) Method

FormatPercent() public static method

Format a percent. Using 6 decimal places.
public static FormatPercent ( double e ) : String
e double The percent to format.
return String
        public static String FormatPercent(double e)
        {
            return (e*100.0).ToString("N6") + "%";
        }