How to compile mex files using gcc and makefiles
21 ビュー (過去 30 日間)
表示 古いコメント
I want to compile C++ code to mex files with gcc using makefiles. Which options do I have to pass to the compiler for the compiled file to work with Matlab?
How do I choose between "-largeArrayDims" and "-compatibleArrayDims"?
1 件のコメント
Walter Roberson
2016 年 5 月 2 日
The only reason to use compatibleArrayDims now is if you are stuck using a pretty old release or you are stuck having to interface a 32 bit program that you cannot update.
回答 (1 件)
Dave Behera
2016 年 5 月 3 日
According to the documentation at
-compatibleArrayDims — Uses the MATLAB Version 7.2 array-handling API, which limits arrays to 2^31-1 elements. Default option. -largeArrayDims — Uses the MATLAB large-array-handling API. This API handles arrays with more than 2^31-1 elements. Must use this option when calling LAPACK or BLAS functions.
0 件のコメント
参考
カテゴリ
Find more on Write C++ Functions Callable from MATLAB (MEX Files) in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!