looking for an efficient way to activate all fprintf in the function

6 次查看(过去 30 天)
I have a function and into it there are a lot of fprintf that print out some informations.I would create a way to show or not show this informations using only one flag.
for example
debug = 0;
if debug ~= 0
fprintf(...);
end
Since I have too many fprintf in the function I don't want write if every time but I would activate and deactivate fprintf once time for all printf

采纳的回答

Daniel Shub
Daniel Shub 2012-9-28
编辑:Daniel Shub 2012-9-28
If you are using a function, you can overload fprintf with a nested function.
function myfunction(debug)
fprintf('first one\n');
fprintf('second one\n');
function fprintf(varargin)
if ~debug
builtin('fprintf', varargin{:});
end
end
end
you can then call with myfunction(true) or myfunction(false)

更多回答(1 个)

Dr. Seis
Dr. Seis 2012-9-28
Probably not what you are looking for, but a quick way may be to just do a search and replace all (i.e., search for: "fprintf" replace with: "%fprintf") before running. Then do the opposite when you don't want debug mode. The "%" will comment out the fprintf line (unless you have multiple lines associated with your fprintf).
The other way may be to create your own fprintf function (e.g., "myfprintf") and have it accept your flag to print or not to print as one of its' arguments.

类别

Help CenterFile Exchange 中查找有关 Install Products 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by