From: eematic ee on
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
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

"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
"> 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
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.