Borrar filtros
Borrar filtros

please can do FFT for excel (.csv) file

1 visualización (últimos 30 días)
Jignesh
Jignesh el 26 de Abr. de 2014
Editada: Roberto el 27 de Abr. de 2014
I need to convert excel file ( time - Acceleration ) data in to Frequency domain with help of FFT

Respuestas (1)

Roberto
Roberto el 27 de Abr. de 2014
Editada: Roberto el 27 de Abr. de 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:

Categorías

Más información sobre Use COM Objects in MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by