Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
38 views

I'm trying to measure the frequency response of an INMP441 microphone using an ESP32 and a Python script. The ESP32 captures 6000 samples via I²S and sends them over serial. I play a 62.5 ms ...
Naffa's user avatar
  • 1
0 votes
0 answers
63 views

I've been having a problem with the Javascript AudioContext using AnalyserNode to get frequency data from a microphone on a HTML page. Using getByteFrequencyData() to get the frequency info and a ...
FireAndIcecream's user avatar
1 vote
0 answers
75 views

Recently, I have been trying to take the raw output from the Infineon BGT60TR13C mmWave radar on the CY8KIT-062S2-AI board and process it into a Range Doppler Map using the onboard CPU. One issue that ...
Ben Bao's user avatar
  • 11
0 votes
0 answers
64 views

I am currently working on a beam propagation code. The code basically consists of a transversal profile (a 2000x2000 array) which is propagated a small distance, then has its borders filtered, then ...
Henrique Guerra's user avatar
13 votes
2 answers
2k views

In this assignment I created the basic rect signal a[n] such that over the domain [-1000, 1000] it's 1 only at |n|<100, meaning it's an array (complex one with zero in the imaginary part) that ...
Nate3384's user avatar
  • 314
1 vote
0 answers
57 views

I'm trying to run an IFFT on a very long signal (10^9 data points) and I'm running into RAM constraints. I'd like to be able to chop up the signal and run it in batches (as I am not time constrained ...
David's user avatar
  • 454
0 votes
1 answer
57 views

I'm trying to solve a problem where I'm given the magnitude and phase spectrum of an image. I know the spectrum information is centered and compressed, so I'm working backward, but I'm getting lost ...
Juan Ignacio's user avatar
3 votes
1 answer
151 views

I'm simulating a 2D Ornstein-Uhlenbeck process (Langevin equation for velocity), and I'm interested in computing the power spectral density (PSD) of the vector-valued velocity process. Following the ...
alpelito7's user avatar
  • 509
0 votes
0 answers
75 views

I'm currently trying to implement the following algorithm for image super resolution https://ieeexplore.ieee.org/document/56062 (doi:10.1109/29.56062) (there is a paywall but it's available on scihub) ...
Luc Masson's user avatar
2 votes
2 answers
143 views

Cuda does not have any direct implementation of 4D FFT. Hence I want to decompose a 4D FFT into 4 x 1D FFTs into X, Y, Z, and W dimensions. I understand that the cufftPlanMany API is best suited for ...
OptimusPrime's user avatar
0 votes
1 answer
67 views

I have a task to simulate a sequence of rectangular pulses. As a result, I wrote Python code, but the end results are not encouraging. #!/bin/python import numpy as np from numpy.fft import fft ...
Varga's user avatar
  • 49
0 votes
1 answer
77 views

I am working on a project where I need to perform Fourier Transform on synthetic periodic data using both NumPy and TensorFlow. However, I am encountering a discrepancy between the FFT outputs of ...
Atte Harrikari's user avatar
-1 votes
1 answer
80 views

Good afternoon. I want to write a code to output experimental frequency response for system identification. For verification I use the modeled sinusoid and the response of the modeled system. To ...
Ilmir Gogorev's user avatar
2 votes
1 answer
68 views

In Gatan software, I found that the Band Pass Filter in Process Image can only be applied to a single 2D image or a specific frame of a 3D image. My dataset is a 3D stack (multiple frames), and I need ...
yale chen's user avatar
1 vote
0 answers
51 views

(Updated) I am trying to understand how CUDA parallelism works in CuFFT while learning CUDA coding. I wrote my version of 1-D FFT in CUDA C++ and compared it with cuFFT. Below are the throughputs I ...
user2988096's user avatar
0 votes
0 answers
37 views

I'm wondering if I got some errors in my emg data + fft code [I got 0Hz filtered emg data] plt.figure(figsize=(20,10)) sns.lineplot(data = DF_newemg, x = DF_newemg.index, y = 'emg[2]', label = '...
이다은's user avatar
5 votes
1 answer
368 views

On my linux system I have: np.finfo(np.float128) info(resolution=1e-18, min=-1.189731495357231765e+4932, max=1.189731495357231765e+4932, dtype=float128) So that is an 80-bit long double. I want to ...
Simd's user avatar
  • 21.5k
0 votes
1 answer
70 views

I want to read real time data from my arduibo, plot it in time domain and then do fft of that data and plot that (frequency domain) but I have no clue how to do it. can’t seem to transfer data array ...
Nemanja Nenadić's user avatar
4 votes
1 answer
327 views

I am using Python to compute the cross-correlation of two 2D matrices, and I have implemented three different methods. Below is my experimental code along with their execution times: import numpy as ...
Vincent Wan's user avatar
3 votes
1 answer
98 views

I'm following a tutorial on youtube on Fourier Optics in python, to simulate diffraction of light through a slit. The video in question Source Code of video Now, I'm trying to implement the get_U(z,...
Hrishav Saha's user avatar
0 votes
1 answer
117 views

I am working on an embedded project with the STM32C031C6 microcontroller using STM32CubeIDE. My goal is to perform an FFT on ADC input data and transmit the results over UART. I am utilizing the ARM ...
Reebin Jose's user avatar
0 votes
0 answers
76 views

I am writing down a code that first apply Butterworth (low pass filter) to a earthquake time history and then create the one sided fourier amplitude of the filtered motion and multiply it with a ...
Z.Ulus's user avatar
  • 1
2 votes
0 answers
142 views

I have a problem where I have a dataset of audio's files, and I need to cut every single of it in 2 pieces: one piece after and one before a determined "beep" sound. I examined some audios ...
Marcel James's user avatar
0 votes
0 answers
61 views

I’m working on a MATLAB project that requires FFT and IFFT computations on large images using GPUs. Currently, the image size is 32000×25600 with double precision data. Although we need to process ...
comnetdat's user avatar
0 votes
0 answers
55 views

I have a question to the command fft in Matlab. By using the default settings Matlab assumes the signal to be periodic with a periodicity of 2π. However, for my problem I need to apply the FFT to a ...
Birgit1287's user avatar

1
2 3 4 5
114