DistributedMatrix<T> Constructor

Definition

Namespace: Extreme.Mathematics.Distributed
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

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