Exemple #1
0
 static double IFloatingPoint <double> .Log2(double x)
 => Math.Log2(x);
Exemple #2
0
 /// <inheritdoc cref="IBinaryNumber{TSelf}.Log2(TSelf)" />
 public static double Log2(double value) => Math.Log2(value);
Exemple #3
0
 static double IBinaryNumber <double> .Log2(double value)
 => Math.Log2(value);
Exemple #4
0
 /// <inheritdoc cref="ILogarithmicFunctions{TSelf}.Log2P1(TSelf)" />
 public static double Log2P1(double x) => Math.Log2(x + 1);