System.Math.Math.Log C# (CSharp) Méthode

Log() public static méthode

public static Log ( double a, double newBase ) : double
a double
newBase double
Résultat double
		public static double Log (double a, double newBase)
		{
			if (newBase == 1.0)
				return Double.NaN;
			double result = Log(a) / Log(newBase);
			return (result == -0)? 0: result;
		}

Same methods

Math.Math::Log ( double d ) : double