Distributed Provider.Make Distributed Method
Definition
Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Make | Creates a distributed version of a matrix. |
Make | Creates a distributed version of a vector. |
Make | Creates a distributed version of a matrix. |
Make | Creates a distributed version of a vector. |
MakeDistributed<T>(Matrix<T>)
Creates a distributed version of a matrix.
public DistributedMatrix<T> MakeDistributed<T>(
Matrix<T> matrix
)
where T : struct, new()
Parameters
- matrix Matrix<T>
- A matrix.
Type Parameters
- T
- The element type of the matrix.
Return Value
DistributedMatrix<T>A distributed matrix whose local copy is matrix.
MakeDistributed<T>(Vector<T>)
Creates a distributed version of a vector.
public DistributedVector<T> MakeDistributed<T>(
Vector<T> vector
)
where T : struct, new()
Parameters
- vector Vector<T>
- A vector.
Type Parameters
- T
- The element type of the vector.
Return Value
DistributedVector<T>A distributed vector whose local copy is vector.
MakeDistributed<T>(Matrix<T>, Boolean)
Creates a distributed version of a matrix.
public DistributedMatrix<T> MakeDistributed<T>(
Matrix<T> matrix,
bool copyData
)
where T : struct, new()
Parameters
- matrix Matrix<T>
- A matrix.
- copyData Boolean
- true if the matrix elements should be copied to the distributed copy; otherwise false.
Type Parameters
- T
- The element type of the matrix.
Return Value
DistributedMatrix<T>A distributed matrix whose local copy is matrix.
MakeDistributed<T>(Vector<T>, Boolean)
Creates a distributed version of a vector.
public DistributedVector<T> MakeDistributed<T>(
Vector<T> vector,
bool copyData
)
where T : struct, new()
Parameters
- vector Vector<T>
- A vector.
- copyData Boolean
- true if the vector elements should be copied to the distributed copy; otherwise false.
Type Parameters
- T
- The element type of the vector.
Return Value
DistributedVector<T>A distributed vector whose local copy is vector.