Can Matlab Student compile mex files?
显示 更早的评论
Can Matlab Student compile cpp to mex files (not to a standalone application)?
for example, something like this:
#include "mex.h"
void mexFunction(int nlhs, mxArray plhs[], int nrhs, const mxArray *prhs[]) { / blubb */}
Thanks Simon
采纳的回答
更多回答(1 个)
Image Analyst
2014-7-9
编辑:Image Analyst
2014-7-9
0 个投票
I'm pretty sure the answer is no, even if you have a compiler (like Visual Studio). The MATLAB Compiler product is not able to be installed on student editions is what I believe I've heard, and it seems to NOT be on the list of available add-on products for the student edition found here: http://www.mathworks.com/academia/student_version/companion.html?s_tid=ac_add_sv_bod. So I guess I'll have to disagree with Philip.
Here is the official answer: http://www.mathworks.com/matlabcentral/answers/89168-matlab-engine-without-matlab-license#answer_125028
2 个评论
Philip Borghesani
2014-7-9
编辑:Image Analyst
2014-7-9
I believe we answered different questions. The MATLAB student edition can compile c or cpp source code into a mex binary that can called from MATLAB. This functionality ships with all copies of MATLAB.
The MATLAB compiler product and MATLAB Coder are not available for student MATLAB so MATLAB code cannot be compiled to standalone libraries or executables.
Image Analyst
2014-7-9
OK, thanks for the clarification. (I don't own the student edition.)
类别
在 帮助中心 和 File Exchange 中查找有关 Write C Functions Callable from MATLAB (MEX Files) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!