Click or drag to resize

DoubleMatrix(Int32, Int32, Double) Constructor

Constructs a DoubleMatrix instance of the specifed dimensions and initializes all matrix element values to the given value.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleMatrix(
	int rows,
	int cols,
	double initialValue
)

Parameters

rows  Int32
The number of rows.
cols  Int32
The number of columns.
initialValue  Double
The value used to initialize all matrix elements.
See Also