Getting a command like gather to run silently

17 次查看(过去 30 天)
I am using the command gather many times in a loop, and it throws out the following updates each time,
Evaluating tall expression using the Local MATLAB Session:
- Pass 1 of 2: Completed in 1.5 sec
- Pass 2 of 2: Completed in 0.37 sec
Evaluation completed in 2 sec
Is there a way to make a command like this run silently?
  1 个评论
KAE
KAE 2020-3-20
Let me see if evalc can be used on the line of my program that contains gather (see Walter's answer).

请先登录,再进行评论。

采纳的回答

Guillaume
Guillaume 2020-3-27
编辑:Guillaume 2020-3-27
The following is unfortunately completely undocumented and therefore to be used at your own risk. It may stop working in a future version of matlab or may not even work in your version if you're not using R2020a which is where I've tested it:
%override default ProgressReporter (normally a CommandWindowProgressReporter) with a NullProgressReporter which displays nothing
matlab.bigdata.internal.executor.ProgressReporter.override(matlab.bigdata.internal.executor.NullProgressReporter);
It's a shame it's completely undocumented since mathworks have gone to the trouble of building this very complex machinery to completely change the way gather (and other functions) outputs progress.
Basically (sic! it's actually very complex with closures, futures, promises, lazy evaluators, executors, etc.) at some point gather will ask the abstract class ProgressReporter for the current progress reporter. By default it's a CommandWindowProgressReporter which is what displays the text to the command window. You can override that default with any other class derived from ProgressReporter and matlab provides such a class NullProgressReporter that outputs nothing.
It's a much better solution than using evalc and really mathworks should move it out of the internal package and document it.
Note: to go back to the default:
matlab.bigdata.internal.executor.ProgressReporter.override(matlab.bigdata.internal.executor.CommandWindowProgressReporter);
You can also create your own ProgressReporter to customise the progress display to your liking.

更多回答(1 个)

Sourabh Kondapaka
Sourabh Kondapaka 2020-3-27
Hi,
The evalc()” function can be used to suppress the output from a matlab expression and capture it in a variable.
The input to evalc()” function is a matlab expression as a string.
For more information, refer the documentation of 'evalc()' : evalc
For alternatives to using evalc()” function, refer :

类别

Help CenterFile Exchange 中查找有关 Programming Utilities 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by