Click or drag to resize

BinaryMathLd(UInt32) Method

Returns k such that 2^k <= x < 2^(k+1).

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static int Ld(
	uint x
)

Parameters

x  UInt32
The argument.

Return Value

Int32
A number k such that 2^k <= x < 2^(k+1).
Remarks
If x is 0, MinValue is returned.
See Also