Click or drag to resize

DenseMatrix Constructor (Double, Int32, Int32)

Construct a matrix without copying the given array.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public DenseMatrix(
	double[][] array,
	int rowDimension,
	int columnDimension
)

Parameters

array
Type: SystemDouble
Rectangular two-dimensional array of doubles.
rowDimension
Type: SystemInt32
Number of rows, this must match the first dimension of the given array.
columnDimension
Type: SystemInt32
Number of columns, this must match the second dimensions of the given array.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when array is .
ArgumentOutOfRangeException Thrown when rowDimension or columnDimension are less than zero.
See Also