Returns the magnitude of each element 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> GetMagnitude<T>(
this Vector<Complex<T>> vector
)
<ExtensionAttribute>
Public Shared Function GetMagnitude(Of T) (
vector As Vector(Of Complex(Of T))
) As Vector(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Vector<T>^ GetMagnitude(
Vector<Complex<T>>^ vector
)
[<ExtensionAttribute>]
static member GetMagnitude :
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 magnitude of the corresponding elements 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