signal processing and fft
조회 수: 1 (최근 30일)
이전 댓글 표시
I collected signal data from labchart and plotted it in matalb,but my end goal is to get an fft of that signal or graph that I plotted.I was wondering how can I accurately get and fft of that plot.
댓글 수: 2
Walter Roberson
2017년 7월 10일
Do you still have the data that was being plotted, or could you modify your program to save it?
If not then do you still have the graphics objects that went into making up the parts of the plot?
If not then is all you have a screen capture of a line plot?
답변 (1개)
Star Strider
2017년 7월 10일
See the documentation for the fft (link) function. Particularly note the code between the first (top) two plot figures.
댓글 수: 3
Walter Roberson
2017년 7월 10일
Just take the data you collected and fft it (or otherwise process it as appropriate, such as spectrogram())
Star Strider
2017년 7월 10일
My pleasure.
Since you plotted the original data in MATLAB, you have the data. If you know the independent variable range that you want to analyze, you can use the find function to determine the indices for the variable range, and then just use those indices to access your independent and dependent variables.
If you want to do it graphically, in the plot figure window, you can use the ‘Data Brushing’ tool to select specific data from the plot, then save them to the Clipboard to analyze separately. See the documentation on Marking Up Graphs with Data Brushing (link) for details.
Once you get the data you are interested in analyzing, you can do the fft on it.
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!