EuclidGreatestCommonDivisor(BigInteger, BigInteger) Method |
Returns the greatest common divisor (gcd) of two big integers.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static BigInteger GreatestCommonDivisor(
BigInteger a,
BigInteger b
)
Parameters
- a BigInteger
- First Integer: a.
- b BigInteger
- Second Integer: b.
Return Value
BigIntegerGreatest common divisor
gcd(a,b)
See Also