please can do FFT for excel (.csv) file

3 Ansichten (letzte 30 Tage)
Jignesh
Jignesh am 26 Apr. 2014
Bearbeitet: Roberto am 27 Apr. 2014
I need to convert excel file ( time - Acceleration ) data in to Frequency domain with help of FFT

Antworten (1)

Roberto
Roberto am 27 Apr. 2014
Bearbeitet: Roberto am 27 Apr. 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:

Kategorien

Mehr zu Use COM Objects in MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by