Is it possible to mex a .cpp include lots of .h file provide by mathworks.

1 回表示 (過去 30 日間)
xian zhao
xian zhao 2017 年 11 月 21 日
回答済み: xian zhao 2017 年 11 月 29 日
I want to mex a .cpp file, however, the .cpp file include a .h file (Refer as 1.h) provided by mathworks, 1.h include another .h file (Refer as 2.h) provided by mathworks, as a result, there are lots of .h file from mathworks are included. When call mex, it will return an error due to there is some .h file by mathworks not found. I wonder if it's possible to mex file without find and copy all .h files into one files?
  1 件のコメント
James Tursa
James Tursa 2017 年 11 月 22 日
編集済み: James Tursa 2017 年 11 月 22 日
This happens all the time in the normal course of mexing files. E.g., having
#include "mex.h"
will include that file, and inside that file is this line
#include "matrix.h"
So just doing regular mexing already does what you apparently are having problems with ... it includes an additional file that you didn't explicitly specify.
Can you give more details as to how you are doing your compiling, and what exactly are the includes that you have in your code?

サインインしてコメントする。

回答 (3 件)

Walter Roberson
Walter Roberson 2017 年 11 月 21 日
"I wonder if it's possible to mex file without find and copy all .h files into one files"
No.
  8 件のコメント
xian zhao
xian zhao 2017 年 11 月 23 日
yes,I already implement your suggestion,also the file are copied to the same one fold. still there is the same error. i will share my code soon for your convenient to evaluate.
xian zhao
xian zhao 2017 年 11 月 23 日
Please find my code from below link. Thanks.

サインインしてコメントする。


xian zhao
xian zhao 2017 年 11 月 23 日
Please find the code and other files related.

xian zhao
xian zhao 2017 年 11 月 29 日
I get the solution, I mex my code with MinGW before. However it's not compatilbe with .lib generated by microsoft VS. And when I try mex with microsoft visual studio, the mex proceed successfully.

カテゴリ

Help Center および File ExchangeC MEX 文件应用程序 についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!