nimfftw3 icon indicating copy to clipboard operation
nimfftw3 copied to clipboard

Nim bindings for FFTW3.

Results 1 nimfftw3 issues
Sort by recently updated
recently updated
newest added

``` import arraymancer import fftw3 import std/complex let shape = @[6] # Use dummy tensor to create plan var dummy_input = newTensor[Complex64](shape) dummy_output = newTensor[Complex64](shape) var FFT: fftw_plan = fftw_plan_dft(dummy_input,...