Click or drag to resize

MatrixNormalSample Method (Matrix, Matrix, Matrix)

Static method which generates sample of matrix normal distribution with user specified generator and parameters.

Namespace:  FinMath.Statistics.Distributions
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static Matrix Sample(
	Matrix means,
	Matrix rowCovariance,
	Matrix columnCovariance
)

Parameters

means
Type: FinMath.LinearAlgebraMatrix
Matrix of means.
rowCovariance
Type: FinMath.LinearAlgebraMatrix
Row covariance matrix.
columnCovariance
Type: FinMath.LinearAlgebraMatrix
Column covariance matrix.

Return Value

Type: Matrix
One random vector.
See Also