Version

Random(Vector,Double,Double) Method

Returns a ComplexMatrix of values drawn from the uniform distribution between lowerBound and upperBound.
Syntax
'Declaration
 
Public Overloads Shared Function Random( _
   ByVal size As Vector, _
   ByVal lowerBound As Double, _
   ByVal upperBound As Double _
) As Matrix
public static Matrix Random( 
   Vector size,
   double lowerBound,
   double upperBound
)

Parameters

size
A size Vector.
lowerBound
A lower bound on the elements of the random Matrix.
upperBound
An upper bound on the elements of the random Matrix.

Return Value

A Matrix of random values.
Exceptions
ExceptionDescription
System.ArgumentException Occurs for invalid size Vectors.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also