discrete inverse fourier transform
이전 댓글 표시
I have an = (T0* (exp(-T1)*(2*n*pi/T0*sin((n*pi*(T0-2))/(2*T0 ))-cos((n*pi*(T0-2))/(2*T0 )))+1))/(1+(2*n*pi/T0)^2);
and I need to preform a ifft using this formula
an.*exp(j*n*w0*x)
while n is between -25 to 25
what am I missing? I'm trying to use symsum and ifft functions and plot?
댓글 수: 8
Matt J
2012년 10월 8일
Not sure why you would use SYMSUM. Why not just IFFT?
Rotem
2012년 10월 8일
OK, but then why are using symbolic variables if ultimately you just want a plot? Or, if you insist on summing symbolically, with SYMSUM, why do you think you need IFFT as well?
In any case, we probably need to see your code and more of a description from you of what isn't working in it.
Star Strider
2012년 10월 8일
Rotem
2012년 10월 8일
Matt J
2012년 10월 9일
But once you've used SYMSUM to evaluate Σ an.*exp(j*n*w0*x) then what more is there to do? The expression above is the inverse fourier transform of an, is it not? Why does IFFT have to be part of this?
Walter Roberson
2012년 10월 9일
Note that ifourier is for the continuous inverse fourier, not the discrete.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!