0

I would like to define the function with Fourier series when I just have discrette data. (I don't have a specific function).

I can draw the graph using the data, but I don't have a idea how can I get this function. The plot is a periodic.

I want to obtain a function that will work like a Fourier series expansion. How can I define such a function?

Graph enter image description here

Horizontal-axis is Time. Vertical-axis is Space.

m_goldberg
  • 107,779
  • 16
  • 103
  • 257
user132682
  • 317
  • 3
  • 8

1 Answers1

5

Use Fourier[]. It calculates the FFT of the data. Then you can change the magnitude and phase information into a sum of sinusoids. See the answer to this question: How to approximate a given WAV file with trigonometric series? for details on how to do it.

bill s
  • 68,936
  • 4
  • 101
  • 191