From: Ernest Galbrun on
Ugh, sorry for the typo and double post, I really need to find how to disable automatic completion.

So, free wanyas = few ways
From: Steven Lord on

"Ernest Galbrun" <firstname.lastname(a)ensem.inpl-nancy.fr> wrote in message
news:hrm0b3$ji1$1(a)fred.mathworks.com...
> Yes, there are a free wanya I could manually redirect the output ; what I
> would rather do is change the standard output and make it a text control
> embedded in my GUI.

I do not know of a way to do what you want. You should use us's suggestion
of EVALC. Just remember that EVALC (since it has the word EVAL in its name)
has some of the same limitations as EVAL -- if you call a function only
inside the context of the EVALC call, you will need to specifically tell the
Compiler to include it in your application.

http://www.mathworks.com/access/helpdesk/help/toolbox/compiler/br2cqa0-2.html#br2cqa0-11

--
Steve Lord
slord(a)mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ


From: Walter Roberson on
Ernest Galbrun wrote:
> Yes, there are a free wanya I could manually redirect the output ; what
> I would rather do is change the standard output and make it a text
> control embedded in my GUI.

Matlab does not itself provide a way to do that. The difficulty of
writing a MEX function to do this for you would probably depend upon the
operating system in use, and the exact mechanism that is used to invoke
the third-party code, and whether the third-party code uses default
output buffering or overrides it (the default buffering is what you
probably would prefer in this case.)