MATLAB Finding an integer with matlab fft function

AI Thread Summary
The discussion revolves around using MATLAB's FFT function to solve an integral problem assigned as homework. The integral in question is defined as the function x^2*exp(-x^2) over the range from negative to positive infinity. Participants clarify that the task involves calculating this integral, with one suggesting that integration by parts could be a method to solve it. A solution using MATLAB code is provided, demonstrating how to compute the integral using FFT. The conversation highlights confusion about the assignment's wording but ultimately focuses on the application of FFT for integral evaluation.
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
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
 
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.
 
Seems like you should be able to evaluate this integral by using integration by parts. I don't understand what MATLAB has to do with it.

- Warren
 
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;
>>
 

Similar threads

Back
Top