Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. def plot_fourier(n_terms):
  2. #### STUDENT COMPLETED CELL ####
  3. # Add your function here
  4. y = fourier_sum(x,n_terms)
  5. plt.plot(x,y)
  6. plt.xlabel("X")
  7. plt.ylabel("Fourier Sum")
  8. plt.title("Summation of Fourier Series for N terms")
  9. plt.grid()
  10. plt.show()
  11.  
  12. ################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement