Блог пользователя red_coder

Автор red_coder, 13 лет назад, По-английски

hey guys! today i learnt about FAST FOURIER TRANSFORM but i have no idea of how to implement this nice algorithm in c++ code. When i tried to search for the code in google all i got was a set of codes implementing it not directly but in one form or the other. So i am totally messed up.....

Guys suppose we are given two polynomial coeffecients each of degree N in vector form P and Q. Please can anyone write a nice C++ code with comments for multiplying these polynomials and output a vector of size 2N denoting the coeffecients of the resulting polynomial (product of Polynomials P and Q). Thanks in advance.

  • Проголосовать: нравится
  • -5
  • Проголосовать: не нравится

»
13 лет назад, скрыть # |
 
Проголосовать: нравится +6 Проголосовать: не нравится

I've wrote an article about it one day, you can try use Google Translate or just get some code examples from.

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I guess this will help: FFT(c++)MITnotebook