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.2.419.0 (24.2.419.0)
Syntax public DenseMatrix(
double[][] array,
int rowDimension,
int columnDimension
)
Public Sub New (
array As Double()(),
rowDimension As Integer,
columnDimension As Integer
)
public:
DenseMatrix(
array<array<double>^>^ array,
int rowDimension,
int columnDimension
)
new :
array : float[][] *
rowDimension : int *
columnDimension : int -> DenseMatrix
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 See Also