Prev: Reading 3d STL files in MATLAB and changing their orientation
Next: Error when running executable compiled using Matlab within C++program
From: eematic ee on 30 Sep 2009 21:15 I have successfully created a GUI. I would now like to be able to use it without having to open matlab also being directly accessable from the windows desktop (a .exe file). I this possible?
From: eematic ee on 30 Sep 2009 22:11 I am going to user the MatLab Compiler to get the job done. This is what I have thus far: mcc -m C:/path/file.m -a .C:/path/Standalone/* Error code: ??? Undefined function or method 'mcc' for input arguments of type 'char'.
From: Steven Lord on 1 Oct 2009 09:59 "eematic ee" <eematic(a)att.net> wrote in message news:ha133l$69i$1(a)fred.mathworks.com... >I am going to user the MatLab Compiler to get the job done. This is what I >have thus far: > > mcc -m C:/path/file.m -a .C:/path/Standalone/* > > Error code: > > ??? Undefined function or method 'mcc' for input arguments of type 'char'. Check the output of the VER function to determine if you have MATLAB Compiler installed. If you don't, you won't be able to create a standalone application using MCC. -- Steve Lord slord(a)mathworks.com comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
From: eematic ee on 1 Oct 2009 20:56 "> Check the output of the VER function to determine if you have MATLAB > Compiler installed. If you don't, you won't be able to create a standalone > application using MCC. I tried this function, not sure of the results: ver = getRunInterfaceVersion(2) ??? Undefined function or method 'getRunInterfaceVersion' for input arguments of type 'double'.
From: ImageAnalyst on 1 Oct 2009 21:14
On Oct 1, 8:56 pm, "eematic ee" <eema...(a)att.net> wrote: > "> Check the output of the VER function to determine if you have MATLAB > > > Compiler installed. If you don't, you won't be able to create a standalone > > application using MCC. > > I tried this function, not sure of the results: > > ver = getRunInterfaceVersion(2) > ??? Undefined function or method 'getRunInterfaceVersion' for input arguments of type 'double'. --------------------------------------------------- I never heard of the "getRunInterfaceVersion" function. Can't you just type "ver" at the ">>" command prompt in the command window and then come back here and paste what it says? (You can delete your license number if you want, before you paste.) You should be able to do this with no errors since ver is a function built in to the base MATLAB package. |