Any one knows how to use FFTW in C#? or goof FFT algorithm?
-
I want to use FFTW in C#, but I can not get it work. anyone knows it? there are lot of FFT implemented in C# but only supports with a data length of 2^n, anyone knows some good FFT algorithm supports arbitray length? thanks!!
-
I want to use FFTW in C#, but I can not get it work. anyone knows it? there are lot of FFT implemented in C# but only supports with a data length of 2^n, anyone knows some good FFT algorithm supports arbitray length? thanks!!
-
I want to use FFTW in C#, but I can not get it work. anyone knows it? there are lot of FFT implemented in C# but only supports with a data length of 2^n, anyone knows some good FFT algorithm supports arbitray length? thanks!!
Take a look at ILNumerics[^] As long as you have the FFTW libraries in the same directory, all you need is the line
ILMath.FFT = new ILFFTW3FFT();
and ILNumerics will use FFTW. Dybs
The shout of progress is not "Eureka!" it's "Strange... that's not what i expected". - peterchen
-
see this sample : http://www.sdss.jhu.edu/~tamas/bytes/fftwcsharp.html[^]
thanks, but the link you give me does not work.
-
Take a look at ILNumerics[^] As long as you have the FFTW libraries in the same directory, all you need is the line
ILMath.FFT = new ILFFTW3FFT();
and ILNumerics will use FFTW. Dybs
The shout of progress is not "Eureka!" it's "Strange... that's not what i expected". - peterchen
thanks!