Why mex is creating error?
2 次查看(过去 30 天)
显示 更早的评论
I run this code:
mex -O resize.cc
mex -O reduce.cc
mex -O shiftdt.cc
mex -O features.cc
mex -O fconv.cc
This error occurs:
??? Error using ==> mex at 222 Unable to complete successfully.
Error in ==> compile at 1 mex -O resize.cc
What to do now?
1 个评论
Walter Roberson
2014-2-10
It doesn't say anything else?
Have you used
mex -setup
to configure your compiler ?
回答(2 个)
Rehan
2017-8-5
编辑:Walter Roberson
2017-8-5
hi
this syntax is for mac or linux, but if you are running this code on windows. use full path like this
mex C:\Users\....\resize.cc
if you have any issue you can ask. i hope it helped.
3 个评论
Jan
2017-8-5
@Rehan: The situation is the same under Linux, MacOS and Windows: If resize.cc is in the current folder, no path is required. If it is not in the current folder, you need either a relative or absolute path.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!