Transform Codings like DCT,FFT, Haar...

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
codeprof
User
User
Posts: 65
Joined: Sun Sep 16, 2012 12:13 pm

Transform Codings like DCT,FFT, Haar...

Post by codeprof »

Hi

I would like it if PureBasic would provide a simple Function for Transform Codings like DCT,FFT, Haar...

Code: Select all

TransformArray(array(), #PB_Transform_FFT)
TransformArray(array(), #PB_Transform_IFFT)
TransformArray(src_array(), dest_array(), #PB_Transform_DCT)
TransformArray2D(src_array(), dest_array(), #PB_Transform_HAAR_Wavelet)
...
I could provide some C code. However there are also many libraries on the internet.