필터 지우기
필터 지우기

please can do FFT for excel (.csv) file

조회 수: 1 (최근 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 CenterFile Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by