how to prevent printing output of Neural Network in command line

2 views (last 30 days)
When I use newrb function to creat a RBF network, the Neural Network's name, sizes, connections, subobjects, functions and parameters, and so on will print in the command line automaticly, how can I prevent this, I don't want this massages show in the command line. I know the content of "network.m" code appears to be output from the command line. But I still can't find the right place in code where this massages shows.Thanks a lot !

Accepted Answer

Walter Roberson
Walter Roberson on 9 Apr 2020
P = [1 2 3];
T = [2.0 4.1 5.9];
evalc('net = newrb(P,T)');
  3 Comments
jue hou
jue hou on 17 Apr 2020
Do you know how to prevent printing out put of arima model when using 'arima()' in the command line?
like this? I don't want this to show in the command line.
I have tried the evalc(), but this function seems like not the solution.
Walter Roberson
Walter Roberson on 17 Apr 2020
? Just put a semi-colon at the end of the line.
Mdl = arima('ARLags',2,'AR',-0.5,'D',1,'MA',-0.2,...
'Constant',3.1);

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!