kfr icon indicating copy to clipboard operation
kfr copied to clipboard

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)

Results 60 kfr issues
Sort by recently updated
recently updated
newest added

Hello I try to build KFR C API with MSVC2017 according to instructions in README. However this is the error message : > lld-link: error: : undefined symbol: mainCRTStartup **The...

I'm following the docs and when I run ``` cmake -DENABLE_CAPI_BUILD=ON -DCMAKE_BUILD_TYPE=Release .. ``` I get ``` CMake Error at CMakeLists.txt:243 (install): install TARGETS given target "kfr_capi" which does not...

Hello, I moved the header files to include and when using the library, I encountered return 1... I am new, please help me.

Hello, I have been facing some issues installing KFR on a basic Ubuntu distribution. My setup is using a scientific framework (ROOT CERN) which is compiled with Clang10, and some...

Hi, KFR Community, Thanks for the help in advance for two issues. 1) how to get the transfer function coefficients of IIR, such as "the 8th-order Chebyshev type I filter,...

Hi. Are there any implementations of the following functionality in the KFR library, with intrinsics: - correlation of two vectors, with a single double-number output (Pearson correlation coefficient), and a...

Hello, I have successfully built KFR (incl. C api) with shared library option enabled. Right now, I am trying to compile a class using GCC9 (std=c++17) including some basic call...

I am using kfr as an extern library, and need to expose my interface using std::vector to avoid integrate kfr in my package. How should I do the convertion?

Repro: ``` $ sudo docker run -v $PWD/kfr:/kfr -it ubuntu:18.04 # apt update ; apt install cmake g++-8 # mkdir build; cd build # cmake /kfr/ -DCMAKE_CXX_COMPILER=g++-8 -- The CXX...