Version

NormalDistribution(Matrix,Double,Double) Method

Returns a Matrix with the value of the normal distribuion at each element of x. The distribution has mean mu and standard deviation sigma.
Syntax
'Declaration
 
Public Overloads Shared Function NormalDistribution( _
   ByVal x As Matrix, _
   ByVal mu As Double, _
   ByVal sigma As Double _
) As Matrix
public static Matrix NormalDistribution( 
   Matrix x,
   double mu,
   double sigma
)

Parameters

x
A Matrix.
mu
The mean of the distribution.
sigma
The standard deviation of the distribution.

Return Value

The normal distrubition x.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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