Jul 11, 2007 #1 S suddy72 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.
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.
Jul 11, 2007 #2 E echo47 Advanced Member level 6 Joined Apr 7, 2002 Messages 3,933 Helped 638 Reputation 1,274 Reaction score 90 Trophy points 1,328 Location USA Activity points 33,176 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".
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".
Jul 17, 2007 #3 R rajsrikanth Full Member level 2 Joined Apr 19, 2006 Messages 130 Helped 12 Reputation 24 Reaction score 4 Trophy points 1,298 Location Hyderabad Activity points 1,947 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.
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.