Fft Definition and 163 Threads
-
E
MATLAB [~,~,~,~,~,~,~,~,spec] Too many output arguments...
Background: https://sccn.ucsd.edu/eeglab/index.php "EEGLAB is an interactive Matlab toolbox for processing continuous and event-related EEG, MEG and other electrophysiological data incorporating independent component analysis (ICA), time/frequency analysis, artifact rejection, event-related...- Ephant
- Thread
- Fft
- Replies: 5
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
E
MATLAB Plots and FFT of Rows or Columns of Data
Hi, the following plots the waveforms and the FFT of a signal (one channel only): signal = data; %assuming data was loaded first Fs = 4800; % Sampling frequency T = 1/Fs; % Sampling period L = size(signal, 1); % Length of signal t = (0:L-1)*T; % Time vector X = double(signal)...- Ephant
- Thread
- Columns Fft
- Replies: 8
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
E
Harmonics, Interferences, Autocorrelations, FFT
Hi I have some questions about the following: 1. It is an FFT spectrum analysis output from the Sigview software. First. The large peak at 60Hz is AC interference on air (maybe capacitive coupling) as the amplifier is completely battery operated. How come there are no 120 Hz, 180Hz, 240Hz...- Ephant
- Thread
- Fft Harmonic Interference
- Replies: 7
- Forum: Electrical Engineering
-
A
Number of Multiplications in the FFT Algorithm
Hello everyone, maybe some of you know the formula for the number of multiplications in the FFT algorithm. This is again given as ##N/2 \cdot log(N)##. Why is that so? Can you really "prove" this? I can only deduce this from what I know, because we have ##log(N)## levels and ##N/2##...- Albert01
- Thread
- Fft Induction Multiplication Proof
- Replies: 10
- Forum: Programming and Computer Science
-
A Editing in Freq domain and applying inverse FFT
Hello All, I am somewhat familiar with FFT and iFFT and its uses. However I have an issue when I edit in Freq domain and try to get back to time domain . I have an audio signal in time domain that I transform to frequency domain using an FFT routine in block sizes of N points. (in my case 256...- raminee
- Thread
- Domain Fft Inverse
- Replies: 6
- Forum: General Math
-
F
Using PASCO's FFT Ap for Investigation 16D
I was trying to incorporate this lab into the course, but when I try using a tuning fork on the FFT/Spectrum Analyzer app I can't get a well defined frequency reading. I tried doing the same thing on an opensource FFT app and had the same issue. I am thinking most laptop microphones these days...- FortranMan
- Thread
- Ap Fft Investigation
- Replies: 3
- Forum: STEM Educators and Teaching
-
A
MATLAB Boundary conditions in the resolution of a PDE with the FFT method
How to impose boundary conditions when solving a PDE with fft? For example here: If I copy this code I get periodic boundary conditions. Thank you- accdd
- Thread
- Boundary Boundary conditions Conditions Fft Method Pde Resolution
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
B
Understanding the Basics of FFT for Image Processing
if you watch this Video : The Julia Programming Language at time marker 28:00, You will see that Grant takes an FFT of an Image. In order to do a FFT, you need to know the sampling rate, but what is the sampling rate of one image? And what if your image is not size 2^N ? Does the program just...- btb4198
- Thread
- Fft Image Image processing Mit
- Replies: 11
- Forum: Programming and Computer Science
-
M
MATLAB FFT interpretation of time vector (simple)
I have video data that shows an object moving up and down. I'd like to extract the frequency the object moves. Following the given example here (scroll down to "Examples"), am I correct in assuming Fs would be camera frame rate and L would be the total number of frames? Thanks so much!- member 428835
- Thread
- Fft Interpretation Time Vector
- Replies: 3
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
Lecture 1 - Data Driven Methods in Dynamical Systems
This is an introductory video for my class on data driven methods in dynamical systems theory. We will cover topics including SVDs, FFTs, DMD, PCA, and many other acronyms.- AcademicOverAnalysis
- Media item
- Data science Fft Graduate Svd
- Comments: 0
- Category: Misc Math
-
MATLAB FFT of conjugate doesn't coincide exactly at the negative frequency
I am trying to understand why the conjugate of a signal in the time domain doesn't produce an exact flip of the frequency domain spectrum. There is always a one-pixel shift in the result. The MATLAB code is shown below. I use a flip for the conjugate spectrum to show that it doesn't match the...- tworitdash
- Thread
- Conjugate Fft Frequency Negative
- Replies: 13
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
I Linearity of power spectral density calculations
I have a question related to linearity of power spectral density calculation. Suppose I have a time series, divided into some epochs. If I compute PSD by Welch's method with a time window equal to the length of an epoch and without any overlap, I obtain this result: If I calculate the... -
What is the Difference Between FFT Scaling and Analytical Fourier Transform?
When considering the forward FFT of a mathematical function sampled at times ##t = 0, \Delta, \ldots, (N-1) \Delta##, following the usual convention, we have something like $$ H(f) = \int_{-\infty}^{+\infty} h(t) e^{-2 \pi i f t} dt \quad \Rightarrow \quad H_k = \sum_{n=0}^{N-1} h_n e^{-2 \pi i...- DrClaude
- Thread
- Analytical Fft Fourier transform Scaling
- Replies: 26
- Forum: Programming and Computer Science
-
Why Does My FFT Integration Method Produce Nonzero Imaginary Parts?
Hi guys, for a project I had to get involved with discrete Fourier transforms to solve PDEs. However, the code that I implemented according to a pseudo-code from a paper did not work - it seems like I calculated integrals incorrectly. To search the error, I tried to integrate the sin(x)...- SchroedingersLion
- Thread
- Fft Integrals
- Replies: 8
- Forum: Electrical Engineering
-
M
Confused by envelope detection and windowing+overlapping
Summary: Should both envelope detection and windowing+overlapping be used before FFT? Summary: Should both envelope detection and windowing+overlapping be used before FFT? Hi everyone! I'm somewhat a newbie to signal analysis, but I've also noticed that there seem to be many different...- mrkbrnlmr
- Thread
- Bearing Confused Detection Fault Fft
- Replies: 6
- Forum: Electrical Engineering
-
D
How to use the window functions on a signal in MATLAB?
Homework Statement I am suppose to write a program that compares the FFT (Fast Fourier Transform Diagrams) of a sampled signal without the use of a window function and with it. The window function should be as long as the signal and the signal should have N points, N chosen as to not cause...- diredragon
- Thread
- Fft Fourier transform Functions Matlab Matlab code Signal Signal processing Window
- Replies: 2
- Forum: Engineering and Comp Sci Homework Help
-
F
I Solving PDE's with chebychev FFT
I have seen one lecturer solve a PDE with just using Fast Fourier Transform (##FFT##) of a function ##v## on a chebychev grid. ##v_t=\mu v_x## This lecturer uses ##FFT## on ##V##, then solves the ODE using an ODE solver in Matlab, then inverse ##FFT## to get the real solution ...- fahraynk
- Thread
- Fft Pde
- Replies: 11
- Forum: Differential Equations
-
K
Unbiased estimate of a parameter in the Rice distribution
I am trying to estimate the amplitude of a real signal with a particular frequency and unknown phase. The signal is sampled at a frequency much higher than the Nyquist frequency for the signal. For simplicity, I take an FFT period which is a multiple of the signal period (which conveniently is a...- Khashishi
- Thread
- Distribution Estimate Fft Parameter
- Replies: 10
- Forum: Set Theory, Logic, Probability, Statistics
-
D
Meaning of the FFT of a Poynting Vector integral, reflection coefficient
Hello, For calculating the mean power at a specific cross section of a waveguide, one can calculate the mean value of the temporal function of Poynting Vector, P(t), where P(t) is the ExHy-EyHx. Note that I am not talking about phasors or a sinusoidal state. If I integrate over the waveguide...- dimpep
- Thread
- Coefficient Fft Integral Poynting vector Reflection Reflection coefficient Vector
- Replies: 8
- Forum: Electrical Engineering
-
J
Python How can I integrate sinusoids in python code using FFT?
Hello, Thank you for taking time to read my post. I have a discrete set of data points that represent an acceleration signal. I want to take the integral of this set of points twice so as to get a function which represents the position over time. To accomplish this, I have taken the FFT of the...- jameslat
- Thread
- Code Fft Python
- Replies: 3
- Forum: Programming and Computer Science
-
J
I Can an FFT be used to extract individual sinusoids from a set of data points?
Hello, Thank you for taking time to read my post. Background: I have a accelerometer project that I am playing with that gives me the acceleration of the object. I can plot this data and it looks very nice. I want to integrate this to get the velocity and then integrate it again to get the...- jameslat
- Thread
- Fft Sinusoids
- Replies: 5
- Forum: General Math
-
N
Multiplying Big Numbers Using FFT
Multiplying big numbers is a very common application of the FFT, and as such, there are many papers on the subject available online. However, these papers all use sophisticated algorithms where a simple one seems to work. My question is, what's wrong with the simple algorithm: Multiplication...- n+1
- Thread
- Algorithms Fft Numbers
- Replies: 1
- Forum: Programming and Computer Science
-
I
How to center the bandwidth for carrier frequency?
I have a baseband signal in IQ form. I have a method to calculate the carrier offset and estimate the carrier bin. I want to center the carrier to the middle of the bandwidth. How do I do so? Do I simply multiply the IQ data by the exponential with the carrier offset, but doesn't that shift the...- IKnowNada
- Thread
- Bandwidth Carrier Center Dsp Fft Frequency Signal processing
- Replies: 2
- Forum: Electrical Engineering
-
N
Image FFT and Lens MTF: Evaluating Final Image Quality
Hi, I am trying to determine the final image on a detector having a 600x600 mm viewed object and the known MTF of a lens. So when I FFT the object, thus creating frequencies -128/600 : 128/600 for a 256x256 image, how does the multiplication of the transformed object and the MTF "keep track" of... -
M
Calculating Magnetic Field Strength from FFT
Hello All, Briefly on the exposition; I'm an undergraduate assistant to a professor. We contribute to the Muon g-2 experiment in Fermilab, designing and optimizing the magnetic-measurement equipment. As you might imagine I utilize the Fourier Transform often to analyze data. The data I'm...- MxwllsPersuasns
- Thread
- Fft Field Field strength Fourier Laboratory Magnetic Magnetic field Magnetic field strength Strength
- Replies: 10
- Forum: Electromagnetism
-
M
Calculating Magnetic Field from FFT Amplitude
So a little bit of background: I work in an undergraduate lab at UMass Amherst and am currently building/optimizing a faraday magnetometer for use in the Muon g-2 experiment at Fermilab. The magnetometer works as follows. A laser is shone through a crystal with a particular Verdet Constant at...- MxwllsPersuasns
- Thread
- Amplitude Experiment Fft Field Fourier Magnetic Magnetic field Transform
- Replies: 1
- Forum: Electromagnetism
-
I Why are the bins N/2 - N not a mirror image of bins 0 - N/2 in FFT analysis?
I am trying to do Fast Fourier Transform on some data recorded from RTL SDR. I managed to write a program that does that, but the problem is this. This is final result as it should look And this is my result It may be hard to understand this, I'll try to explain. My graph is done using 5000...- GhostLoveScore
- Thread
- Data Fft
- Replies: 4
- Forum: General Math
-
B
Pressure sensor- Digital_Filter
I have input data from a pressure sensor:https://physicsforums-bernhardtmediall.netdna-ssl.com/data/attachments/93/93464-7e84f120a9323e7d16b7dfa59c069739.jpg We run this into an FFT and found that the max point is at 3.3378Hz. So we did a Digital band pass Filter for 3.3Hz - 3.6Hz. and then...- btb4198
- Thread
- Fft Pressure Sensor
- Replies: 10
- Forum: Electrical Engineering
-
R
Simple 8-bit FFT Processor for 512pt Array at 20MHz
Hello. I'm looking for a "simple" FFT processor able to process an 8 bits input in an array of at least 512 pts with a speed of at least 20 MHz. I've precised "simple" instead of certain TI DSP with up to 196 pins ! I only need FFT nothing else. Does it exist ? Thanks by advance for replies.- Ravaner
- Thread
- Array Fft Processor
- Replies: 5
- Forum: Electrical Engineering
-
T
Algorithm for dB vs time graph for one frequency from FFT?
I'm doing a physics experiment for school, for which I am measuring the reverb time for specific frequencies in a room. What I did was record a 1000 Hz sound, and some time after it, and looked at its FFT on Audacity to see the intensity of just 1000 Hz at a given time. Manually, I can do this...- tyiuo
- Thread
- Algorithm Db Fft Frequency Graph Sound Time
- Replies: 4
- Forum: Programming and Computer Science
-
Calculating power spectral density from FFT
EDIT: Sorry. It's FFT - Fast Fourier Transform, not FTT. I am interested in doing some amateur radio astronomy. Mainly at 1420MHz, hydrogen line. I have a RTL SDR stick. For those who don't know what that is, it's USB DVB-T receiver that can receive anything between 24 – 1766 MHz. Now, there...- GhostLoveScore
- Thread
- Density Fft Power
- Replies: 3
- Forum: Mechanics
-
B
How Can I Enhance My Sound Generator Project with FFT and Digital Filters?
So I have working code of a : FFT Digital low pass and high pass filter and sound generator What cool projects can I make which these ?- btb4198
- Thread
- Cool Fft Generator Project Sound
- Replies: 3
- Forum: Electrical Engineering
-
B
I Units of Amplitude & Frequency in Coding (n=0 to 52920)
for (int n = 0; n < 52920; n++){ F = Amplitude * sin(2 *pi*n* Frequency/44100) ; } what are the units of Amplitude ? I know Frequency is in Hz also what are the unit of F?- btb4198
- Thread
- Amplitude Fft Units
- Replies: 7
- Forum: Other Physics Topics
-
B
Understanding N-Stages of FFT & DFT Formula for Frequency Domain
1) How many stages are in N numbers for a FFT? I know N=8 has 3 stages and N=4 has 2 stages ? 2) The DFT formula converts a signal from the time domain into the frequency domain. Is this done by comparing x[n] against signals known as sinusoidal basis functions? are e-j2 pi kn/N sinusoidal...- btb4198
- Thread
- Dft Domain Fft Formula Frequency Frequency domain
- Replies: 4
- Forum: Electrical Engineering
-
A Take FFT to find time period for eclipsing binaries
I am trying to use Kepler Data for Eclipsing Binaries to estimate time period, and then other parameters such as mass, eccentricity, semi-major axis, distance, etc. of the binary systems. I want to write code in MATLAB which will use FFT to find the time period. The available data has the...- CassiopeiaA
- Thread
- Binary star Data analysis Fft Period Time Time period
- Replies: 1
- Forum: Astronomy and Astrophysics
-
M
I Understanding Fourier Transforms
Hello all, First time poster here so please excuse any mistakes as I'm unfamiliar with the conventions of this forum. Also before I get started I'd like to say I wasn't sure exactly where a question like this would go; I debated in the Math Programs and Latex section but figured general physics...- MxwllsPersuasns
- Thread
- Fft Fourier Transform
- Replies: 1
- Forum: Other Physics Topics
-
V
I Poisson Equation Neumann boundaries singularity
I am trying to solve the poisson equation with neumann BC's in a 2D cartesian geometry as part of a Navier-Stokes solver routine and was hoping for some help. I am using a fast Fourier transform in the x direction and a finite difference scheme in the y. This means the poisson equation becomes...- vector_problems
- Thread
- Fft Neumann Poisson Poisson equation Singularity
- Replies: 1
- Forum: Differential Equations
-
V
I Solving u_x=(sin(x))*(u) in Fourier space
Does anyone know if it is possible to solve an equation of the type u_x=(sin(x))*(u) on a periodic domain using the fft. I have tried methods using convolutions but have had no success thanks in advance- vector_problems
- Thread
- Fft Fourier Fourier series Pde Space
- Replies: 4
- Forum: Differential Equations
-
M
Efficient 2D FFT in C for Large Arrays: Where to Find the Code?
I am looking for a 2D fft that takes in a 2D array of heights and does a fft in c on the array. I would like if the code was capable of working with big arrays, such as 8192 x 8192 I have tried the paulbourke and sanfoundry websites. The first was not giving me the output that is expected and...- Maciej Olszewski
- Thread
- 2d Fft
- Replies: 3
- Forum: Programming and Computer Science
-
G
A FFT phase result interpretation?
I have a complex signal eg: cos(wt + phase1) + i*cos(wt + phase2) the frequency of both the waves is same. When i have a look at the phase spectrum of the above signal, i am not able to interpret the phase values. They are making no sense. I tried to determine phase shift for real signals and... -
T
A Regarding the Continous Wavelet Transform 'a' parameter
Hi there, I've recently been doing some studying into time-frequency analysis. I've covered some of the basic materials regarding the Short-Time Fourier Transform (STFT) along with the concepts of temporal and frequency resolution (along with the uncertainty principle of course). I've now...- tomizzo
- Thread
- Fft Parameter Transform Wavelet
- Replies: 1
- Forum: General Math
-
J
MATLAB 3D Diffusion Equation in MATLAB
Hi guys, I have functioning MATLAB code for my solution of the 3D Diffusion equation (using a 3D Fourier transform and Crank-Nicolsen) that runs just from the command window and automatically plots the results. However, it seems like my solution just decays to zero regardless of what initial...- johnnyTransform
- Thread
- 3d Diffusion Diffusion equation Discrete math Fft Heat and mass transfer Matlab Numerical analysis
- Replies: 2
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
K
Automotive Why is an FFT done after a noise signal is captured?
Presently there is a gear whine noise issue in a vehicle transmission. Our NVH team captured the noise signal using a microphone and then did an FFT of the signal and gave us a frequency plot. What exactly can I take out of it? Can I assume every harmonic belongs to a noise generated by a gear...- k.udhay
- Thread
- Fft Gear Noise Signal
- Replies: 15
- Forum: Mechanical Engineering
-
E
Reverse FFT of a ratio of two FFTs
Dear all, I don't know if this is the correct place for this question, but I did a little search on the forum and I saw that most FFT related questions have been posted here. My question is this: I need to deconvolve two real signals (in my case they are two probability density functions), so I...- eoghan
- Thread
- Fft Ratio Reverse
- Replies: 5
- Forum: Programming and Computer Science
-
A
Help designing a music visualizer for a 12x12 LED screen
I am working in a group for designing a LED interactive Screen. My part of the project is the design of the music visualization system. I am new in this area, but I know I need to use some op-amps to filter the input signal from the mp3 player. Could anyone give me any suggestions on how to...- AnnaP
- Thread
- Designing Dsp Fft Filter Led Music Op-amp Screen
- Replies: 8
- Forum: Engineering and Comp Sci Homework Help
-
Analyzing RC response with convolution theorem and fft.
Some textbooks like (Numerical recipes the art of scientific computing) derive the DFT as a Riemann sum of the CTFT. With this in mind it would be natural then to approximate the identity ##y(t)=x*h=\mathcal{F}^{-1}\big\{XH\big\}## with the mathlab code y=ifft(fft(x).*fft(h)) which roughly...- davidbenari
- Thread
- Convolution Fft Rc Response Theorem
- Replies: 1
- Forum: Electrical Engineering
-
J
I On liquid oscillation excitation
(I'm new to the Forum, so if I violate the rules unknowingly, please do let me know) So, during a recent research, I analyzed the frequency spectrum of our hand's oscillation while walking. As it turns out, it contains distinct harmonic frequencies (around 1.8*n Hz), and the second among them...- Jiwon Han
- Thread
- Excitation Fft Liquid Oscillation Resonance
- Replies: 3
- Forum: Other Physics Topics
-
Y
Frequency spectrum in Doppler effect
Homework Statement I have been investigating the Doppler effect in a circular motion with a stationary source and moving observer (however the main aim is to determine the speed of sound in the end). Using Vernier software - Logger Pro - I have obtained two graphs of the sound pressure against...- yulija
- Thread
- Doppler Doppler effect Fft Frequency Lab Spectrum
- Replies: 1
- Forum: Introductory Physics Homework Help
-
Z
MATLAB Is FFT the Proper Method for Transforming Green Function in MATLAB?
Hi everybody. I have a (1×N) Green function in MATLAB. I want to use the FFt function for Green function to transform the time domain. Does the FFT command work correctly for Green function using: A=fft(Green function, nfft). Here nfft is the number of transformed points. Is it necessary that...- Zahra G
- Thread
- Fast fourier transform Fft Function Green Green function
- Replies: 6
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
R
Meaning of having powerful signal near to 0Hz
Hello I computed, with python scipy.rfft, the Fourier transform of signal coming from an accelerometer. I don't understood what this is the meaning of having a powerful signal near to 0 Hz ?- ramesses
- Thread
- Accelerometer Fft Noise Signal
- Replies: 4
- Forum: General Engineering