please can do FFT for excel (.csv) file

I need to convert excel file ( time - Acceleration ) data in to Frequency domain with help of FFT

Réponses (1)

Roberto
Roberto le 27 Avr 2014
Modifié(e) : Roberto le 27 Avr 2014
CSV is NOT Excel.
First import your data
from excel:
y = xlsread('filename.xlsx','sheet','range');
from CSV:
y = load('filename.csv');
y = load('filename.txt');
then you can use a regular FFT process have a look on this:

Tags

Question posée :

le 26 Avr 2014

Modifié(e) :

le 27 Avr 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by