Group Abstract Group Abstract

Message Boards Message Boards

0
|
5.9K Views
|
2 Replies
|
0 Total Likes
View groups...
Share
Share this post:

Computation of FFT

Posted 10 years ago

I have the following differential equation.

sols = NDSolve[{x'[t] == (1/4) x[t - 15]/(1 + x[t - 15]^10) - x[t]/10, x[t /; t <= 0] == 0.01}, x, {t, 0, 10}]; 

How can I compute FFT of x'[t] or x[t].

POSTED BY: Dia Ghosh
2 Replies
Posted 10 years ago

Thank you

POSTED BY: Dia Ghosh

NDSolve returns an interpolation. For FFT, you need a list of points.

You can use Table to create a list of points:

Table[myFunction[t],{t,0,10,0.1}]

For examples of doing FFT, see the documentation for Fourier.

POSTED BY: Sean Clarke
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard