looking for an efficient way to activate all fprintf in the function
7 ビュー (過去 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
0 件のコメント
採用された回答
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)
0 件のコメント
その他の回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Debugging and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!