UniformRandomNumber
Repository source: UniformRandomNumber
Description¶
This example generates 3 random numbers between 0 and 2 from a uniform distribution.
Other languages
See (Cxx)
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
UniformRandomNumber.cs
using System;
using System.Diagnostics;
using Kitware.VTK;
void UniformRandomNumber() {
// Set the number of random numbers we wish to produce to 3.
uint numRand = 3;
// Without this line, the random numbers will be the same every iteration.
vtkMath.RandomSeed((int)( DateTime.Now.Ticks & 0x0000FFFF ));
// Generate numRand random numbers from a uniform distribution between 0.0 and 2.0
for(uint i = 0; i < numRand; i++) {
double a = vtkMath.Random(0.0, 2.0);
Console.WriteLine(a);
}
}