Complex Conjugate Signal Vector<T>.Map In Place Method
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Map | |
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 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
Argument | function is null. |