integral of function definite in piece with multiple variable

2 次查看(过去 30 天)
I need to calculate the fourier transform of a function
can you show me how to run this code and also how to run using syms
thank you
clear
r0=@(t) (t<0);
r1=@(t) (t>=0 & t<1);
r2=@(t) (t>=1);
r3=@(t) (t>=1 & t<2);
r4=@(t) (t>=2);
p=@(t) (r0(t).*0+r1(t).*1+r2(t).*0);
P=@(w)(integral(p.*exp(complex(0,-w*t))/sqrt(2*pi),-inf,+inf));

采纳的回答

Walter Roberson
Walter Roberson 2020-5-21
P = @(w) integral( @(t) p(t) .* exp(complex(0,-w*t))/sqrt(2*pi),-inf,+inf);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by