How to close nntrain tool???
9 次查看(过去 30 天)
显示 更早的评论
HI I have made my Gui in which I have apply neural network for classification.. But I have apply the train command for training purpose. That open the nntrain tool I want that when my Gui open then its train tool donot show but it work... If someone knows about it please help me put.
Thanks Regards Ali
0 个评论
采纳的回答
Friedrich
2013-7-4
编辑:Friedrich
2013-7-4
Hi,
when taking a look at the code of nntraintool you will see:
function [result,result2] = nntraintool(command,varargin)
%NNTRAINTOOL Neural network training tool
%
% Syntax
%
% nntraintool
% nntraintool('close')
%
% Description
%
% NNTRAINTOOL opens the training window GUI. This is launched
% automatically when TRAIN is called.
%
% To disable the training window set the following network training
% property.
%
% net.<matlab:doc nnproperty.net_trainParam trainParam>.<matlab:doc nnparam.showWindow showWindow> = false;
%
% To enable command line training instead.
%
% net.<matlab:doc nnproperty.net_trainParam trainParam>.<matlab:doc nnparam.showCommandLine showCommandLine> = true;
%
% NNTRAINTOOL('close') closes the window.
% Copyright 2007-2012 The MathWorks, Inc.
So call a to this
YourNet.trainParam.showWindow = false;
should do it.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!