how to run hello.cpp without the link error?
古いコメントを表示
Error: Link of 'hello.mexw64' failed.
hello.cpp just contains the code:
#include <iostream>
using namespace std;
int main() { cout<<"Hello sow..!"; return 0; }
回答 (1 件)
James Tursa
2016 年 2 月 26 日
編集済み: James Tursa
2016 年 2 月 26 日
You need to have the gateway function mexFunction in your source code. See this link and the examples listed there:
Once you have that set up properly, and the file is in the current directory, then all you do is enter this at the command prompt:
mex hello.cpp
2 件のコメント
sowjanya boddeti
2016 年 2 月 28 日
Jan
2016 年 2 月 28 日
Please format your code using the "{} Code" button and post the complete error message. Don't you see that the code is not readable?
カテゴリ
ヘルプ センター および 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!