Returns the real part of a complex vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> GetRealPart<T>(
this Vector<Complex<T>> vector
)
<ExtensionAttribute>
Public Shared Function GetRealPart(Of T) (
vector As Vector(Of Complex(Of T))
) As Vector(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Vector<T>^ GetRealPart(
Vector<Complex<T>>^ vector
)
[<ExtensionAttribute>]
static member GetRealPart :
vector : Vector<Complex<'T>> -> Vector<'T>
Parameters
- vector
- Type: Extreme.MathematicsVectorComplexT
A complex vector.
Type Parameters
- T
- The element type of the real vector.
Return Value
Type:
VectorTA vector with element type
T containing the real part
of
vector.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
VectorComplexT. 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).
Reference