public static DoubleMatrix Dense(
int numberOfRows,
int numberOfColumns,
double[] data
)
Public Shared Function Dense (
numberOfRows As Integer,
numberOfColumns As Integer,
data As Double()
) As DoubleMatrix
public:
static DoubleMatrix^ Dense(
int numberOfRows,
int numberOfColumns,
array<double>^ data
)
static member Dense :
numberOfRows : int *
numberOfColumns : int *
data : float[] -> DoubleMatrix
DoubleMatrix dense instances allocate storage for each matrix entry. Sparse DoubleMatrix instances can be created by calling method Sparse(Int32, Int32, Int32).
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. This method assumes that the order is by columns: 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.
In the following example, a dense matrix is created by passing data assumed to be ColMajor ordered.
using System;
namespace Novacta.Analytics.CodeExamples
{
public class DenseExample2
{
public void Main()
{
// Set matrix dimensions.
int numberOfRows = 3;
int numberOfColumns = 2;
// Create the data.
var data = new double[6] {
1, 2, 3, 4, 5, 6
};
// Create the matrix. Data are assumed as ColMajor ordered.
var matrix = DoubleMatrix.Dense(
numberOfRows, numberOfColumns, data);
Console.WriteLine("Assuming ColMajor ordered data.");
Console.WriteLine("The data matrix:");
Console.WriteLine(matrix);
}
}
}
// Executing method Main() produces the following output:
//
// Assuming ColMajor ordered data.
// The data matrix:
// 1 4
// 2 5
// 3 6
//
//
ArgumentNullException | data is null. |
ArgumentOutOfRangeException | numberOfRows is not positive. -or- numberOfColumns is not positive. |
ArgumentException | data has Length not equal to the multiplication of numberOfRows by numberOfColumns. |