annotate toolboxes/FullBNT-1.0.7/netlab3.3/maxitmess.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function s = maxitmess()
wolffd@0 2 %MAXITMESS Create a standard error message when training reaches max. iterations.
wolffd@0 3 %
wolffd@0 4 % Description
wolffd@0 5 % S = MAXITMESS returns a standard string that it used by training
wolffd@0 6 % algorithms when the maximum number of iterations (as specified in
wolffd@0 7 % OPTIONS(14) is reached.
wolffd@0 8 %
wolffd@0 9 % See also
wolffd@0 10 % CONJGRAD, GLMTRAIN, GMMEM, GRADDESC, GTMEM, KMEANS, OLGD, QUASINEW, SCG
wolffd@0 11 %
wolffd@0 12
wolffd@0 13 % Copyright (c) Ian T Nabney (1996-2001)
wolffd@0 14
wolffd@0 15 s = 'Maximum number of iterations has been exceeded';
wolffd@0 16