Creates a distributed version of a matrix.
Namespace: Extreme.Mathematics.DistributedAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public DistributedMatrix<T> MakeDistributed<T>(
Matrix<T> matrix,
bool copyData
)
Public Function MakeDistributed(Of T) (
matrix As Matrix(Of T),
copyData As Boolean
) As DistributedMatrix(Of T)
public:
generic<typename T>
DistributedMatrix<T>^ MakeDistributed(
Matrix<T>^ matrix,
bool copyData
)
member MakeDistributed :
matrix : Matrix<'T> *
copyData : bool -> DistributedMatrix<'T>
Parameters
- matrix
- Type: Extreme.Mathematics.GenericMatrixT
A matrix. - copyData
- Type: SystemBoolean
if the matrix elements
should be copied to the distributed copy; otherwise .
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
DistributedMatrixTA distributed matrix whose local copy is
matrix.
Numerical Libraries
Supported in: 5.x
Reference