How to create an executable .exe file from a .m file

前端 未结 8 1612
逝去的感伤
逝去的感伤 2020-11-30 04:46

I was wondering if there is a way to create a \'.exe\' file from \' .m\' file in MATLAB, such that it can be run in machine which does not have MATLAB (like it can be done

8条回答
  •  臣服心动
    2020-11-30 05:26

    I developed a non-matlab software for direct compilation of m-files (TMC Compiler). This is an open-source converter of m-files projects to C. The compiler produces the C code that may be linked with provided open-source run-time library to produce a stand-alone application. The library implements a set of build-in functions; the linear-algebra operations use LAPACK code. It is possible to expand the set of the build-in functions by custom implementation as described in the documentation.

提交回复
热议问题