Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to make FFT plots in Matlab?

Status
Not open for further replies.

suddy72

Member level 2
Member level 2
Joined
Jun 28, 2007
Messages
50
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,694
Hi people,

Anyone know how i produce an FFT plot in matlab. I have the FFT data as raw excel data, all i want to do is feed this excel data into MATLAB and procuce the relevent FFT plot. Anyone know how this is done ?

Cheers.
 

FFT plots in Matlab

I assume you want MATLAB to compute the FFT.

Try typing a column or row of numbers into Excel, save it to "xdata.xls", and then run this MATLAB command:
plot(abs(fft(xlsread('xdata.xls'))));

MATLAB provides other methods for accessing Excel data, including DDE transfers to/from the Excel window. Try searching MATLAB help for "excel".
 

Re: FFT plots in Matlab

import the data into the matlab( u have an option to import the data in to matlab) then draw the plot.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top