DistributedProvider.CreateMatrix<T> Method

Constructs a new distributed matrix.

Definition

Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public DistributedMatrix<T> CreateMatrix<T>(
	int rowCount,
	int columnCount
)
where T : struct, new()

Parameters

rowCount  Int32
The number of rows in the matrix.
columnCount  Int32
The number of columns in the matrix.

Type Parameters

T
The element type.

Return Value

DistributedMatrix<T>
A distributed matrix for the provider platform.

See Also