Home > freetb4matlab > nnet > train.m

train

PURPOSE ^

% A neural feed-forward network will be trained with @code{train}

SYNOPSIS ^

function [net] = train(net,Pp,Tt,notUsed1,notUsed2,VV)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} {}[@var{net}] = train (@var{MLPnet},@var{mInputN},@var{mOutput},@var{[]},@var{[]},@var{VV})
% A neural feed-forward network will be trained with @code{train}
%
% @example
% [net,tr,out,E] = train(MLPnet,mInputN,mOutput,[],[],VV);
% @end example
% @noindent
%
% left side arguments:
% @example
% net: the trained network of the net structure @code{MLPnet}
% tr :
% out:
% E  : Error
% @end example
% @noindent
%
% right side arguments:
% @example
% MLPnet : the untrained network, created with @code{newff}
% mInputN: normalized input matrix
% mOutput: output matrix (normalized or not)
% []     : unused parameter
% []     : unused parameter
% VV     : validize structure
% @end example
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003