Uses of Interface
learningFactorFunctional.LearningFactorFunctionalModel

Packages that use LearningFactorFunctionalModel
kohonen   
learningFactorFunctional   
 

Uses of LearningFactorFunctionalModel in kohonen
 

Fields in kohonen declared as LearningFactorFunctionalModel
protected  LearningFactorFunctionalModel WTMLearningFunction.functionalModel
          reference to function model
protected  LearningFactorFunctionalModel WTALearningFunction.functionalModel
          reference to function model
 

Methods in kohonen that return LearningFactorFunctionalModel
 LearningFactorFunctionalModel WTMLearningFunction.getFunctionalModel()
          Return function model
 LearningFactorFunctionalModel WTALearningFunction.getFunctionalModel()
          Return function model
 

Methods in kohonen with parameters of type LearningFactorFunctionalModel
 void WTMLearningFunction.setFunctionalModel(LearningFactorFunctionalModel functionalModel)
          Set functional learning factor model
 void WTALearningFunction.setFunctionalModel(LearningFactorFunctionalModel functionalModel)
          Set functional learning factor model
 

Constructors in kohonen with parameters of type LearningFactorFunctionalModel
WTALearningFunction(NetworkModel networkModel, int maxIteration, MetricModel metrics, LearningDataModel learningData, LearningFactorFunctionalModel functionalModel)
          Creates a new instance of WTALearningFunction.
WTALearningFunctionWithTired(NetworkModel networkModel, int maxIteration, MetricModel metrics, LearningDataModel learningData, LearningFactorFunctionalModel functionalModel)
          Creates a new instance of WTALearningFunction.
WTMLearningFunction(NetworkModel networkModel, int maxIteration, MetricModel metrics, LearningDataModel learningData, LearningFactorFunctionalModel functionalModel, NeighbourhoodFunctionModel neighboorhoodFunction)
          Creates a new instance of WTMLearningFunction
WTMLearningFunctionWithTired(NetworkModel networkModel, int maxIteration, MetricModel metrics, LearningDataModel learningData, LearningFactorFunctionalModel functionalModel, NeighbourhoodFunctionModel neighboorhoodFunction)
          Creates a new instance of WTMLearningFunction
 

Uses of LearningFactorFunctionalModel in learningFactorFunctional
 

Classes in learningFactorFunctional that implement LearningFactorFunctionalModel
 class ConstantFunctionalFactor
          Constant Function factor.
 class ExponentionalFunctionFactor
          Expotentional Function Factor.
 class GaussFunctionalFactor
          Gauss Function Factor descibed by function exp(-(k^2))/(2*r^2))
 class HiperbolicFunctionalFactor
          Hiperbolic Function describe by funtion c1/(c2 + k)
where:
c1, c2 - parameters k - iteration number
 class LinearFunctionalFactor
          Linear function describe by: y = (n0 / maxIter) * (maxIter - iter) where:
y - output value
n0 - maximal factor
maxIter - maximal number of iteration
iter - iteration number