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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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 -> DenseMatrixParameters
- 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