| FastFourierTransformDCapacity Property |
Gets or sets the maximal capacity to reserve for internal buffers.
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public int Capacity { get; set; }
Public Property Capacity As Integer
Get
Set
public:
property int Capacity {
int get ();
void set (int value);
}
member Capacity : int with get, set
Property Value
Type:
Int32
The maximal capacity to reserve for internal buffers.
Remarks
For 2D FFT, the capacity must be the size of largest dimension of the 2D array.
For example: To transform an array with 256x512 values, use a capacity of 512.
See Also