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.3.420.0 (24.3.420.0)
Syntax
public DenseMatrix(
	double[][] array,
	int rowDimension,
	int columnDimension
)

Parameters

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