Click or drag to resize

EuclidLeastCommonMultiple(BigInteger, BigInteger) Method

Returns the least common multiple (lcm) of two big integers.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static BigInteger LeastCommonMultiple(
	BigInteger a,
	BigInteger b
)

Parameters

a  BigInteger
First Integer: a.
b  BigInteger
Second Integer: b.

Return Value

BigInteger
Least common multiple lcm(a,b)
See Also