Click or drag to resize

EuclidGreatestCommonDivisor(Int64) Method

Returns the greatest common divisor (gcd) of a set of integers using Euclid's algorithm.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static long GreatestCommonDivisor(
	params long[] integers
)

Parameters

integers  Int64
List of Integers.

Return Value

Int64
Greatest common divisor gcd(list of integers)
See Also