Signal Phase using FFT
조회 수: 3 (최근 30일)
이전 댓글 표시
I have two cerebral signals registered for 10 minutes with a sample rate of 1000Hz. I have to extract the phase of the signals and the average phase displacement using FFT. The signals are represented by a 2x10000 matrix in MATLAB. How can I do that? Thank you in advance
댓글 수: 0
채택된 답변
Shounak Shastri
2018년 3월 19일
"I have to extract the phase of the signals and the average phase displacement using FFT"
Use the "fft" and the "fftshift" functions. The phase can be calculated by using the function 'angle' which will give you the phase and then unwrapping it by using the unwrap function. You can search the documentation for the explaination.
Here is an example in the matlab documentation https://in.mathworks.com/help/matlab/examples/fft-for-spectral-analysis.html
댓글 수: 3
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!