MATLAB: How to suppress the MSE-Output of newrb to speed up the code

neural network toolboxradial basis function

I want to fit a radial basis net to each of several thousand time series. However, every time I call
net = newrb(Xtrain,Ytrain,0,1,50,100);
I get a command line output such as this:
NEWRB, neurons = 0, MSE = 2.48781e+06
The code takes pretty long to run and I suspect that this is not just because of the training but also because of the command line output. How can I avoid that?

Best Answer

Ok I just went into the function file and commented the fprint lines out.