4 lines
159 B
Mathematica
4 lines
159 B
Mathematica
syms t % Define t as a symbolic variable
|
|
f=exp(-t*4)*heaviside(t); % Define f(t) = e^(-4t)*u(t)
|
|
ff=fourier(f); % Take the Fourier transform of f(t)
|