How to do Fourier Transform/FFT on a symbolic function
조회 수: 79 (최근 30일)
이전 댓글 표시
For example I have created a sine wave using symbolic function as follow:
syms t
CycleLength = 1/2.2e9; %(frequency = 2.2GHz);
S(t) = sin(2*pi*t/CycleLength);
fplot(S, [0 1e-8]); ylim([-1.1 1.1]);
title 'Sine wave';
And then I'd like to do FFT on the sine wave. I know FFT is designed only to work numerically on discrete data. But I don't know how to deal with the symbolic expression.
(I've already know the frequency is 2.2GHz in this case but I will be doing more FFT on other symbolic function signals)
댓글 수: 0
답변 (1개)
참고 항목
카테고리
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!