However, could you elaborate on which product you plan to use to compile your MATLAB file into a DLL?
You have two options:
- MATLAB Compiler - supports almost all MATLAB functionality, but generates code that still depends on a set of libraries called the MATLAB Compiler Runtime. I don't know of a way to use unsupported compilers to build binaries with this product.
- MATLAB Coder - supports a limited subset of MATLAB functionality, but generates standalone C/C++ code. You should be able to compile these in Delphi by investing some time/effort into figuring out the right compiler/linker flags.
