예제 #1
0
파일: Double.cs 프로젝트: zhk0603/runtime
 static double IFloatingPoint <double> .Log2(double x)
 => Math.Log2(x);
예제 #2
0
 /// <inheritdoc cref="IBinaryNumber{TSelf}.Log2(TSelf)" />
 public static double Log2(double value) => Math.Log2(value);
예제 #3
0
파일: Double.cs 프로젝트: zhk0603/runtime
 static double IBinaryNumber <double> .Log2(double value)
 => Math.Log2(value);
예제 #4
0
 /// <inheritdoc cref="ILogarithmicFunctions{TSelf}.Log2P1(TSelf)" />
 public static double Log2P1(double x) => Math.Log2(x + 1);