Complex Conjugate Signal Vector<T>.Map In Place Method
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Map | Applies a function to the elements of a complex vector. |
Map | Applies a function in-place to the elements of a vector. |
Map | Applies a function in-place to the elements of a vector as the second argument. |
Map | Applies a function to the elements of a vector. |
MapInPlace(Func<Complex<T>, Complex<T>>)
Applies a function to the elements of a complex vector.
public override Vector<Complex<T>> MapInPlace(
Func<Complex<T>, Complex<T>> function
)
Parameters
- function Func<Complex<T>, Complex<T>>
- A delegate that represents a complex function of one complex variable.
Return Value
Vector<Complex<T>>A reference to this instance.
Remarks
function is applied only to the first half of the vector. It is assumed that function applied to the conjugate of a value equals the conjugate of function applied to that same value.
Exceptions
ArgumentNullException | function is null. |