public static DoubleMatrix Dense(
int numberOfRows,
int numberOfColumns,
double[] data,
bool copyData
)
Public Shared Function Dense (
numberOfRows As Integer,
numberOfColumns As Integer,
data As Double(),
copyData As Boolean
) As DoubleMatrix
public:
static DoubleMatrix^ Dense(
int numberOfRows,
int numberOfColumns,
array<double>^ data,
bool copyData
)
static member Dense :
numberOfRows : int *
numberOfColumns : int *
data : float[] *
copyData : bool -> DoubleMatrix
DoubleMatrix dense instances allocate storage for each matrix entry.
Parameter data is unidimensional, while matrix entries are bi-dimensional, since are defined by their row and column indexes. As a consequence, entries must be linearly ordered to define a correspondence between data and matrix entries. The order of data is assumed by columns (see ColumnMajor): matrix entries are ordered by their column index first, and entries laying on a given column are in turn ordered by their row index. This implies that the first numberOfRows entries in data will be assumed to contain the first column of the returned matrix, and so on.
ArgumentException | data has Length not equal to the multiplication of numberOfRows by numberOfColumns. |
ArgumentOutOfRangeException | numberOfRows is not positive. -or- numberOfColumns is not positive. |
ArgumentNullException | data is null. |