Randomize : Math « Development « VB.Net Tutorial






Option Strict On

Public Module RandomizeStatement
   Public Sub Main()
      Dim number As Double = 1.0325
      
      Rnd(-1)
      Randomize(number)                        ' Number is any Double
      For ctr As Integer = 1 to 10
         Console.WriteLine(Rnd())
      Next
   End Sub
End Module
0.3610106
0.579608
0.2782471
0.05653632
0.2865489
0.33937
0.6398301
0.2991799
0.8264404
0.1662288








7.15.Math
7.15.1.Math.Sqrt and Atan2
7.15.2.Math. Cos and Sin
7.15.3.Convert rectangular 3D coordinates to cylindrical coordinates.
7.15.4.Generating random integers.
7.15.5.Math.Round
7.15.6.Randomize
7.15.7.This example demonstrates Math.Max()
7.15.8.Use the Min method to return and display the smaller of two Single variables.