SharpBCI
A multi-threaded brain control interface (BCI) library in C#
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DSPLib.DFT Class Reference

Performs a complex DFT w/Optimizations for .NET >= 4. More...

Public Member Functions

 DFT ()
 DFT Class More...
 
void Initialize (UInt32 inputDataLength, UInt32 zeroPaddingLength=0, bool forceNoCache=false)
 Pre-Initializes the DFT. More...
 
Complex[] Execute (double[] timeSeries)
 Execute the DFT. More...
 
double[] FrequencySpan (double samplingFrequencyHz)
 Return the Frequency Array for the currently defined DFT. More...
 

Properties

bool IsUsingCached [get, set]
 Read only Boolean property. More...
 

Detailed Description

Performs a complex DFT w/Optimizations for .NET >= 4.

Released under the MIT License

DFT Core Functions Copyright (c) 2016 Steven C. Hageman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

DFT Base Class

Constructor & Destructor Documentation

DSPLib.DFT.DFT ( )

DFT Class

Member Function Documentation

Complex [] DSPLib.DFT.Execute ( double[]  timeSeries)

Execute the DFT.

Parameters
timeSeries
Returns
Complex[] FFT Result
double [] DSPLib.DFT.FrequencySpan ( double  samplingFrequencyHz)

Return the Frequency Array for the currently defined DFT.

Takes into account the total number of points and zero padding points that were defined.

Parameters
samplingFrequencyHz
Returns
void DSPLib.DFT.Initialize ( UInt32  inputDataLength,
UInt32  zeroPaddingLength = 0,
bool  forceNoCache = false 
)

Pre-Initializes the DFT.

Must call first and this anytime the FFT setup changes.

Parameters
inputDataLength
zeroPaddingLength
forceNoCacheTrue will force the DFT to not use pre-calculated caching.

Property Documentation

bool DSPLib.DFT.IsUsingCached
getset

Read only Boolean property.

True meas the currently defined DFT is using cached memory to speed up calculations.


The documentation for this class was generated from the following file: