]> Creatis software - CreaPhase.git/blob - octave_packages/nnet-0.1.13/__printTrainParam.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / nnet-0.1.13 / __printTrainParam.m
1 ## Copyright (C) 2006 Michel D. Schmid  <michaelschmid@users.sourceforge.net>
2 ##
3 ##
4 ## This program is free software; you can redistribute it and/or modify it
5 ## under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2, or (at your option)
7 ## any later version.
8 ##
9 ## This program is distributed in the hope that it will be useful, but
10 ## WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ## General Public License for more details.
13 ##
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program; see the file COPYING.  If not, see
16 ## <http://www.gnu.org/licenses/>.
17
18 ## -*- texinfo -*-
19 ## @deftypefn {Function File} {} __printTrainParam (@var{fid})
20 ## @code{printMLPHeader} saves the header of a  neural network structure
21 ## to a *.txt file with identification @code{fid}.
22 ## @end deftypefn
23
24 ## Author: Michel D. Schmid
25
26 function __printTrainParam(fid,net)
27
28   if isfield(net,"trainParam")
29     str2 = "";
30     str3 = "";
31     if isempty(net.trainParam)
32       fprintf(fid,"          trainParam:  '%s'\n","not yet used item");
33     else
34       cellFieldNames = fieldnames(net.trainParam);
35       [nRows, nColumns] = size(cellFieldNames);
36       if (nRows<4)
37       else
38         for iRuns = 1:nRows
39           if (iRuns==1)
40             str1 =  ["." char(cellFieldNames(iRuns,1)) ", "];
41           endif
42           if (iRuns<=4 & iRuns>1)
43             str1 = [str1 "." char(cellFieldNames(iRuns,1)) ", "];
44           endif
45           if (iRuns>4 & iRuns<=8)
46             str2 = [str2 "." char(cellFieldNames(iRuns,1)) ", "];
47           endif
48           if (iRuns>8)
49             str3 = [str3 "." char(cellFieldNames(iRuns,1)) ", "];
50           endif
51         endfor
52         fprintf(fid,"          trainParam:  %s\n",str1);
53         fprintf(fid,"                       %s\n",str2);
54         fprintf(fid,"                       %s\n",str3);
55       endif
56     endif
57   else
58     fprintf(fid,"field trainparam not found\n");
59   endif
60
61 endfunction