summaryrefslogtreecommitdiff
path: root/149/CH22/EX22.2/ques2.sce
blob: 5462cacc3a854832b73c376d4ef24c48ac9da744 (plain)
1
2
3
4
5
6
7
8
//error
//ques2
disp('To find the fourier transform of given function ');
syms x  s
F=integ(exp(%i*s*x),x,-1,1);
disp(F);
//produces error->
F1=integ(sin(x)/x,x,0,%inf);