DistributedVector<T> Constructor

Definition

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

Overload List

DistributedVector<T>(Vector<T>) Constructs a new distributed vector from a local copy.
DistributedVector<T>(Int32, DistributedDataLocation, ArrayAttributes) Constructs a new distributed vector of the specified size.

DistributedVector<T>(Vector<T>)

Constructs a new distributed vector from a local copy.
C#
public DistributedVector(
	Vector<T> local
)

Parameters

local  Vector<T>
A vector.

DistributedVector<T>(Int32, DistributedDataLocation, ArrayAttributes)

Constructs a new distributed vector of the specified size.
C#
public DistributedVector(
	int length,
	DistributedDataLocation dataSource,
	ArrayAttributes attributes
)

Parameters

length  Int32
The number of elements of the vector.
dataSource  DistributedDataLocation
A DistributedDataLocation value that indicates whether the primary data is stored.
attributes  ArrayAttributes
The attributes of the vector.

See Also