ComposedComplexVector<T> Implicit  Conversion (Vector<T> to ComposedComplexVector<T>)

Implicitly converts a real vector to a complex vector.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static implicit operator ComposedComplexVector<T> (
	Vector<T> realPart
)

Parameters

realPart  Vector<T>
A Vector<T>

Return Value

ComposedComplexVector<T>
A ComposedComplexVector<T> whose real part is realPart and whose imaginary part is zero.

See Also