Problem running compiled MATLAB code

2 views (last 30 days)
D W
D W on 11 Apr 2015
Commented: D W on 13 Apr 2015
Hello,
I have an m-file called merger.m and I compiled it by typing "mcc -m merger.m" into the command prompt window. It gave me the executable merger.exe just fine. merger.m works, but when I try to run merger.exe, it gives me the following error:
"Undefined command/function 'corner'.
Error in ==> merger>mergeImages at 139
Error in ==> merger at 65
MATLAB:UndefinedFunction"
corner is the MATLAB function in the Image Processing Toolbox. How do I fix this?
Thanks

Accepted Answer

Image Analyst
Image Analyst on 11 Apr 2015
Look in the "mcc excluded log.txt" file (or whatever it's called). Is corner() listed in there? If so, you're out of luck and will have to write it yourself rather than use the built-in function. If it's not in there, then call tech support.
  3 Comments
Image Analyst
Image Analyst on 13 Apr 2015
Look for a file called "mccExcludedFiles.log" in whatever folder you told it to put your final output executable - wherever your merger.exe is located, which for your command line will be the current folder. If the file is not there then there are probably no files that are excluded.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB Compiler 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!