at the command Prompt. There, you can find the following information under "options":
verbosity (2)
Integer number used to tune the amount of output the algorithm
generates during execution (mostly as text in the command window).
The higher, the more output. 0 means silent. 3 and above includes a
display of the options structure at the beginning of the execution.
So, create a structure called "options" (for example) as follows:
options.verbosity = 0;
Then, call trustregions with options as the third input. For example, like this:
trustregions(problem, [], options);
(Here, [] means you want a default (i.e., random) initial guess; you can also specify an initial guess there if you prefer.)
Best,
Nicolas