rafan Wrote:You need to modify svm.cpp then recompile it.
Change
#if 1
void info(const char *fmt,...)
to
#if 0
void info(const char *fmt,...)
This only suppress the output given from the call to
info("abc\n");
Instead the cross validation output in the Matlab version is caused by
mexPrintf("abc\n", error_msg);
that does not use the info() function.
I have commented out the mexPrintf calls and now the output is disabled.