why my result do not calculate limit value
3 次查看(过去 30 天)
显示 更早的评论
clc;
clear;
syms x t w X
x=2*exp(-4*t)*cos(10*t);
X=int(x*exp(-j*w*t),t,0,inf)
I want to find X value but its result is always
(2*limit(exp(- 4*t - t*w*1i)*(10*sin(10*t) - cos(10*t)*(4 + w*1i)), t, Inf))/((4 + w*1i)^2 + 100) + (2*(4 + w*1i))/((4 + w*1i)^2 + 100)
how can I calculate that limit value?
2 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!