DistributedExtensions.MakeDistributed<T>(Vector<T>) Method

Returns a distributed version of a vector.

Definition

Namespace: Extreme.Mathematics.Distributed
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static DistributedVector<T> MakeDistributed<T>(
	this Vector<T> vector
)

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.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This method only creates the distributed vector. It does not transfer any data.

See Also