how can I make a mex function printf while it's running?

KAI ZHAO picture KAI ZHAO · Oct 9, 2014 · Viewed 8.3k times · Source

I have a mex file called in my MATLAB script. The mex function may take a while to run, so in order to prevent my code from "stopping there without any outputs", I put many printf statements in the mex file to output some running information about the data being processed.

But when I call the mex function, it doesn't printf anything and stays there during int's running. Finally, after finishing its work, it will printf all the information I want -- NOT while it is running but after finishing. It's not what I want.

So I want to know how to make it not only printf what I want but also printf at the time I want it.

Answer

chappjc picture chappjc · Oct 9, 2014

Yes, mexPrintf is what you need. But note that the command window does not forcibly flush the buffer it uses, often resulting in very long delays before your message is printed. This happens if you begin heavy computations after calling mexPrintf.

A workaround is to use

mexEvalString("drawnow;")

after each call to mexPrintf.

If you find that unappealing, you can make a macro that calls both:

#define printfFnc(...) { mexPrintf(__VA_ARGS__); mexEvalString("drawnow;");}

This uses the variadic macro __VA_ARGS__. It may not be a part of a standard, but seems to be in GCC and Visual C++. Just call printfFnc like you would call printf (or mexPrintf).