Home > UnioviSOM-Oficial > grnntra.m

grnntra

PURPOSE ^

GRNNTRA Generalized Regression Neural Network Train

SYNOPSIS ^

function grnn = grnntra(y,x,C,L,centers,order)

DESCRIPTION ^

 GRNNTRA Generalized Regression Neural Network Train

   grnn = grnntra(y,x,C,L,centers,order)

 INPUTS
       y: output training points (Ry,N)
       x: input  training points (Rx,N)
       C: kernel parameters (kernel widths)
       L: Weight decay regularization parameter
 centers: Model centers
   order: Sugeno model order


 Trains the GRNN and produces the following structure

     grnn.m: RBF centers
     grnn.C: RBF kernel parameters
     grnn.W: RBF weights
 grnn.order: Sugeno order of the approximation

 Other call conventions:

   grnn = grnntra(y,x)             Automatically computes kernel parameters and weights
   grnn = grnntra(y,x,C)           Original Spetch's GRNN algorithm (no least squares weights) 
   grnn = grnntra(y,x,C,L)         Uses least squares interpolation with regularization (weight decay factor L). 
   grnn = grnntra(y,x,L,'e')       Same as above but computes kernel parameters automatically
   grnn = grnntra(y,x,C,L,centres) Uses 'centres' instead of 'x'

 See also GRNNSIM

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 21-Apr-2017 11:56:21 by m2html © 2005