kissfft icon indicating copy to clipboard operation
kissfft copied to clipboard

a Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid

Results 41 kissfft issues
Sort by recently updated
recently updated
newest added

i use cmd: ` make KISSFFT_DATATYPE=int16_t KISSFFT_STATIC=1 testsingle` then Error occur like this: _**DFIXED_POINT=16 twotonetest.c -L.. -lkissfft-int16_t -lm Makefile:133: ======attempting to build FFTW benchmark Makefile:134: *** unterminated call to function...

It's not only GNU systems that need libm linked. Note, the tests still fail for me with: error: ‘M_PIl’ was not declared in this scope; did you mean ‘M_PI’? 46...

To use kissfft as cmake subproject, all headers should be moved into either `/include/kissfft` or `/kissfft` This has the benefit, that all headers has to be included in the namespace...

When building with -Wcast-align, we get a warning because the alignment of st->substate is not known by kiss_fftr_alloc() so shift the data around so that we don't need to care...

Hi there, I need to calculate fft in my iOS project using byte array which from sound record. I can able to integrate kissfft in my project. As per documentation...

I'm cross-compiling and getting the following: ``` $ make install [...] [100%] Linking C static library libkissfft-float.a [100%] Built target kissfft Install the project... -- Install configuration: "" -- Installing:...

I see that only the "pure" FFT is available, no windowing algorithm. Do you think it would be ok to add a small ```kiss_windowing.h/cpp``` to provide a bit of windowing...

I use cmake to build kissfft as staticlib on macOS 11 with property -DKISSFFT_DATATYPE=double, every thing works fine until i try to use it my project. I got nan values...

Thanks so much for an amazing package, this is super useful :) Have you considered making this available to the Arduino ecosystem as a dedicated package? Currently there is only...