DistributedMatrix<T> Constructor

Definition

Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

DistributedMatrix<T>(Matrix<T>) Constructs a new distributed matrix from a local copy.
DistributedMatrix<T>(Int32, Int32, DistributedDataLocation) Constructs a new distributed matrix of the specified size.

DistributedMatrix<T>(Matrix<T>)

Constructs a new distributed matrix from a local copy.
C#
public DistributedMatrix(
	Matrix<T> local
)

Parameters

local  Matrix<T>
A matrix.

DistributedMatrix<T>(Int32, Int32, DistributedDataLocation)

Constructs a new distributed matrix of the specified size.
C#
public DistributedMatrix(
	int rowCount,
	int columnCount,
	DistributedDataLocation dataSource
)

Parameters

rowCount  Int32
The number of rows in the matrix.
columnCount  Int32
The number of columns in the matrix.
dataSource  DistributedDataLocation
A DistributedDataLocation value that indicates whether the primary data is stored.

See Also