python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
FFT outptut for a signal with 2 cosf() cycles
I am transforming a signal using the ZeroFFT library. The results I get from it, are not what I would intuitively expect.
As a test, I feed the FFT algorithm with a buffer that contains two full cycle...
Bram
Votes: 0
Answers: 1
How to detect time-periods present in a signal using FFT?
I'm trying to determine the periodicities present in a given waveform.
This is my signal, which is a sinusoidal waveform:
t_week = np.linspace(1,480, 480)
t_weekend=np.linspace(1,192,192)
T=96 #Time P...
EnigmAI
Votes: 0
Answers: 0
discrete cosine transform implementation differs from library function
I've implemented my own DCT function, but the output differs from scipy's fftpack dct function. I was wondering if anyone knows whether fftpack.dct( ) does any additional transformations, and if so wh...
Rahel Miz
Votes: 0
Answers: 1
Android Kotlin Real-Time FFT and plot
I am trying to apply Real-time FFT on a sensor data which is connected over the bluetooth BLE.
There is a sdk which allows you to receive the data from the sensor in the Android using handler. I am us...
Greyfrog
Votes: 0
Answers: 0