FFTW.NET
FFTW.NET copied to clipboard
.NET wrapper for FFTW
This is probably a very silly question, but hopefully an equally quick fix. I have downloaded the solution and have it open in Visual Studio. I have successfully used NuGet...
Can I use fftw.net with single-precision? I tried it with Nuget download but seems only support double precision. Is there a single-precision version? Thanks
There is a logic bug where i-- makes i go to -1. A proposed fix here: ```diff --git a/FFTW.NET/BufferPool.cs b/FFTW.NET/BufferPool.cs --- a/FFTW.NET/BufferPool.cs +++ b/FFTW.NET/BufferPool.cs @@ -83,7 +83,7 @@ namespace FFTW.NET...
This fixes https://github.com/ArgusMagnus/FFTW.NET/issues/6 and https://github.com/ArgusMagnus/FFTW.NET/issues/9. Manual test notes: Generated a .nupkg, and used it in a project that I had originally reproduced the array index bug in. With the new...
Possibly related to #6. Minimal-ish repro steps: ``` var array = new double[200, 200]; for (var i = 0; i < 3; i++) { using var input = new PinnedArray(array);...
HI, @ArgusMagnus How can I 2d-FFT fo Image using this FFTW.net? Please Show me the sample Code. Thanks in advance ~ from @bemoregt.
Hi Argus I love your work on the array and their memory alignment. Yet, if I'm not wrong, they are not perfect yet: - AlignedArray and FftwArray are fast in...
`Installing 'FFTW.NET 1.0.1'. Successfully installed 'FFTW.NET 1.0.1'. Adding 'FFTW.NET 1.0.1' to xxx. Uninstalling 'FFTW.NET 1.0.1'. Successfully uninstalled 'FFTW.NET 1.0.1'. Install failed. Rolling back... Could not install package 'FFTW.NET 1.0.1'. You...
A wrapper for fftw as a nuget package, sweet! oh...I can't install it :(