FftBase<T>.InPlace Property

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

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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