本文整理汇总了C#中Microsoft.Scripting.Math.BigInteger.Abs方法的典型用法代码示例。如果您正苦于以下问题:C# BigInteger.Abs方法的具体用法?C# BigInteger.Abs怎么用?C# BigInteger.Abs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Scripting.Math.BigInteger
的用法示例。
在下文中一共展示了BigInteger.Abs方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BitLength
// Like GetBitCount(Abs(x)), except 0 maps to 0
public static int BitLength(BigInteger x) {
if (x.IsZero()) {
return 0;
}
return x.Abs().GetBitCount();
}
示例2: Abs
public static object Abs(BigInteger/*!*/ self) {
return Protocols.Normalize(self.Abs());
}
示例3: __abs__
public static object __abs__(BigInteger x) {
return x.Abs();
}
示例4: ToBinary
internal static string ToBinary(BigInteger val) {
string res = ToBinary(val.Abs(), true, true);
if (val.IsNegative()) {
res = "-" + res;
}
return res;
}
示例5: asinh
public static double asinh(BigInteger value) {
if (value == 0) {
return 0;
}
// rewrote ln(v0 + sqrt(v0**2 + 1)) for precision
if (value.Abs() > 1) {
return value.Log() + Math.Log(1.0 + Complex64.Hypot(1.0, 1.0 / value));
} else {
return Math.Log(value + Complex64.Hypot(1.0, value));
}
}