public static ComplexMatrix Dense(
int numberOfRows,
int numberOfColumns,
Complex data
)
Public Shared Function Dense (
numberOfRows As Integer,
numberOfColumns As Integer,
data As Complex
) As ComplexMatrix
public:
static ComplexMatrix^ Dense(
int numberOfRows,
int numberOfColumns,
Complex data
)
static member Dense :
numberOfRows : int *
numberOfColumns : int *
data : Complex -> ComplexMatrix
ComplexMatrix dense instances allocate storage for each matrix entry. Sparse ComplexMatrix instances can be created by calling method Sparse(Int32, Int32, Int32).
In the following example, a dense matrix is created having all its entries equal to a given value.
using System;
using System.Numerics;
namespace Novacta.Analytics.CodeExamples
{
public class ComplexDenseExample4
{
public void Main()
{
// Set matrix dimensions.
int numberOfRows = 3;
int numberOfColumns = 2;
// Set the value for each entry.
Complex data = new(1, -1);
// Create the matrix. All entries will be equal to the
// same value.
var matrix = ComplexMatrix.Dense(
numberOfRows, numberOfColumns, data);
Console.WriteLine("Each entry is equal to the same value.");
Console.WriteLine("The data matrix:");
Console.WriteLine(matrix);
}
}
}
// Executing method Main() produces the following output:
//
// Each entry is equal to the same value.
// The data matrix:
// ( 1, -1) ( 1, -1)
// ( 1, -1) ( 1, -1)
// ( 1, -1) ( 1, -1)
//
//
ArgumentOutOfRangeException | numberOfRows is not positive. -or- numberOfColumns is not positive. |