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