This question is actually about the trade-off between GSL and MATLAB. First, let me define some variables:
- Target OS: Windows XP
- Target IDE: MS VS 2005/2008
- Software: Commercial
- Development Language: C++
Moreover, I am asking this question, because I could not find any complete answer regarding ease of usage, licensing, performance criteria(s) with these two approaches.
We need to implement some numerical operations (like FFT) using GNU GSL and MATLAB. I know that it is possible to use both GSL (with cygwin) and MATLAB on Windows OS with MS VS IDEs.
But, I have following problems:
- Licensing when I use MATLAB libraries in the application (same for GSL)
- Performance differences between MATLAB C++ code and GNU GSL (especially when calculating FFT )
- Ease of use (exceptions, error handling, testability)
It would be great, if you illuminate the path to decision for implementation.
Also, thanks in advance
You don't need Cygwin to use GSL, only to build it. You'll need to use a MinGW GCC to do that, and use either Cygwin or MSYS as a POSIX shell environment to build it using "configure". Or try to find a prebuilt version. You should be able to create an import library for the created DLLs, with tools like gendef and MSVC's lib.exe. This will let you link the DLL with a Visual Studio compiler.
GSL can do FFT's, but FFTW is better at doing that. Both are GPL (if I'm not mistaken), so they will require your app to be GPL compatibly licensed.
Matlab is easier (superficially) than C. But I'm quite sure, when used correctly, GSL and especially FFTW should beat Matlab in terms of raw performance.