FftBase<T>.InPlace Property

Gets or sets whether the transform should be performed in place.

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public bool InPlace { get; set; }

Property Value

Boolean
true if the transform should be performed in place; otherwise false.

Remarks

Not all FFT providers support in-place transforms. In such cases, the behavior is simulated by performing an out-of-place FFT and copying the result to the original input.

You can only set this value if the implementation is not committed.

See Also