please can do FFT for excel (.csv) file

4 ビュー (過去 30 日間)
Jignesh
Jignesh 2014 年 4 月 26 日
編集済み: Roberto 2014 年 4 月 27 日
I need to convert excel file ( time - Acceleration ) data in to Frequency domain with help of FFT

回答 (1 件)

Roberto
Roberto 2014 年 4 月 27 日
編集済み: Roberto 2014 年 4 月 27 日
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:

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by