Frequency domain and Shannon limit
이전 댓글 표시
Hi all,
I am a newbie in MATLAB coding. I have some questions related to frequency domain.
I have an sine wave equation as below:
x1= A1*sin(2*pi*f1*t+phi)
With A1 = 1; phi = pi/2
My question is.
How to represent x1 in frequency domain for different values of f1 and different value of fs (how to make sure Shannon limit is repected in this case).
Thank you all.
답변 (1개)
Robert U
2020년 10월 12일
1 개 추천
Hi long le,
Matlab documentation is quite nice since it provides several examples on key topics. One possibility to transform time dependent signal into frequency domain is the fast fourier transform (short: fft). Matlab has an inbuilt function for that. How to use it is described in the documentation: https://de.mathworks.com/help/matlab/ref/fft.html
Whether the Shannon-limit is respected or not, you can question using an if-statement before the domain transformation (https://de.mathworks.com/help/matlab/ref/if.html)
Kind regards,
Robert
카테고리
도움말 센터 및 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!