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

Implicitly converts a real vector to a complex vector.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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