Numpy Seed Sequence.Next UInt 32 Method
Generates the next 32-bit unsigned integer from the entropy
stream.
Definition
Namespace: Numerics.NET.Random.Seeding
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
A 32-bit unsigned integer.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
public override uint NextUInt32()Return Value
UInt32A 32-bit unsigned integer.
Remarks
This method cycles through the internal entropy pool, applying position-dependent mixing with the hash constant that is updated after each call. The output matches NumPy's generate_state(n, dtype=np.uint32) behavior.