Finding an integer with matlab fft function

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
8 replies · 7K views
ser23
Messages
6
Reaction score
0
Hi, I hope someone could help me, I have been trying to solve this problem with FFT in matlab, why?, because my teacher gave it as homework. The problem is the following.

Obtain the value of the following integer using FFT:

the integer goes from [-infinte, infinite], and the function is x^2*exp(-x^2)*dx

He told us to check the definition of the Fourier transform and I checked in books, MATLAB everywhere and I can't find any info that could help me, I hope someone here can, THANK YOU.
 
Physics news on Phys.org
chroot said:
I have no idea what you mean by "obtain the value of the following integer."

Can you please post the problem exactly as it was given to you?

- Warren

Sure, and thanks for your help

Solve the following integer using the FFT in MATLAB:

integer goes from[-infinite, infinite] and the function is:
x^2*exp(-x^2)dx

TIP: Check the Fourier transform definition. (the tip is from my teacher).

By the way I tried to translate the problem the best I can, because even in spanish what my teacher writes is difficult to understand or to find the answer he is looking for by the problem he gave us.
 
Yes, It should be intergral because of the dx at the end of the fuction.
 
hi, yes the integral I am sorry.
 
He's asking how you would write a program to find the integral using the Fast Fourier Transform (FFT). I don't know how to do it, but I thought I should clear that up for other people.
 
Actually this is the solution my teacher gave us. He said that this is a cool way to calculate an integral, I still don't get it, hope this info helps someone, and thank you all foru your help and good intentions.

>> N=1000;
x=linspace(-10,10,N);
dx=x(2)-x(1);
y=x.^2.*exp(-x.^2);
plot(x,y);
sum( y)*dx;
mm=(fft( y));
mm(1)*dx;
>>