Returns the imaginary part of a complex vector as a real vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> GetImaginaryPart<T>(
this Vector<Complex<T>> vector
)
<ExtensionAttribute>
Public Shared Function GetImaginaryPart(Of T) (
vector As Vector(Of Complex(Of T))
) As Vector(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Vector<T>^ GetImaginaryPart(
Vector<Complex<T>>^ vector
)
[<ExtensionAttribute>]
static member GetImaginaryPart :
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 imaginary 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