Supress output in GeneralizedLinearModel.stepwise
14 ビュー (過去 30 日間)
古いコメントを表示
Anyone knows how to suppress output to command window while running GeneralizedLinearModel.stepwise? The semicolon is not it, just in case. Thanks
0 件のコメント
回答 (1 件)
Matthew Heberger
2021 年 5 月 4 日
Add the following to the input: 'Verbose', 0. For example:
% Load some example data provided by Matlab
load hald;
% Run the stepwise model, specifying NO output to the Command Window
mdl = stepwiselm(ingredients, heat, 'Verbose', 0);
% Display the model coefficients.
mdl.Coefficients;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specialized Power Systems についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!