Prev: drawing a semi-circular channel
Next: interp3
From: ImageAnalyst on 4 May 2010 16:06 On May 4, 2:42 pm, "Abnadan de Melo" <abna...(a)hotmail.com> wrote: > Sure, about the code"mcc-m file.m", I try this code but he dont't work, like before (when I use "mcc -e file") the .exe file has the layout but don't work with the logic. And about the"Dependency Walker", could you be more specific about it? I never use this program. Remember that my code and my layout work perfect in the MATLAB.Thank you for your attention. ---------------------------------------------------------------------------------- Did you try to do anything I suggested? I.e. Did you even try dependencywalker? Did you try to run your program from a operating system window? Did you try to run your program from the MATLAB command window with the ! operator? Did you copy the error message and past it back here? What have you done additional with the information I gave you? Because it sounds like you didn't do anything.
From: Abnadan de Melo on 5 May 2010 12:37 ok...take easy bro... Remember that the file.m and file.fig work good. I try "!file.exe" in the compiled file and dont't work too. The Message error was: "??? Undefined function or method 'syms' for input arguments of type 'char'. Error in ==>file>pushbutton1_Callback at 209 Error in ==> gui_mainfcn at 96 Error in ==> file at 42 Error in ==> guidemfile>@(hObject,eventdata)file('pushbutton1_Callback',hObject,eventdata,guidata(hObject)) ??? Error while evaluating uicontrol Callback " I used the command "mmc -e file"
From: Walter Roberson on 5 May 2010 12:40 Abnadan de Melo wrote: > ok...take easy bro... > Remember that the file.m and file.fig work good. > I try "!file.exe" in the compiled file and dont't work too. The Message > error was: > "??? Undefined function or method 'syms' for input arguments of type > 'char'. The symbolic toolbox cannot be compiled, if I recall correctly.
From: Steven Lord on 5 May 2010 12:58 "Abnadan de Melo" <abnadan(a)hotmail.com> wrote in message news:hrs6rg$g8q$1(a)fred.mathworks.com... > ok...take easy bro... > Remember that the file.m and file.fig work good. > I try "!file.exe" in the compiled file and dont't work too. The Message > error was: > "??? Undefined function or method 'syms' for input arguments of type > 'char'. SYMS is a function from Symbolic Math Toolbox, and this toolbox cannot be compiled using MATLAB Compiler. Read the first section of this page: http://www.mathworks.com/access/helpdesk/help/toolbox/compiler/br2cqa0-2.html -- Steve Lord slord(a)mathworks.com comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
From: Walter Roberson on 5 May 2010 16:24
Walter Roberson wrote: > Abnadan de Melo wrote: >> ok...take easy bro... >> Remember that the file.m and file.fig work good. >> I try "!file.exe" in the compiled file and dont't work too. The >> Message error was: >> "??? Undefined function or method 'syms' for input arguments of type >> 'char'. > > The symbolic toolbox cannot be compiled, if I recall correctly. I see that Steve replied with the same information and an good reference link. If I might point out: Abnadan, if you had shown us the error message itself when you started, then the cause of the problem would have been easily pinpointed within a few minutes of one of the regulars reading the your posting, instead of taking a couple of days and some misunderstanding. :-( |