Package org.encog.mathutil.rbf

Examples of org.encog.mathutil.rbf.GaussianFunction


    widthArray[0] = 1;
    widthArray[1] = 1;

    switch (type) {
    case Gaussian:
      this.rbf = new GaussianFunction(2);
      break;
    case InverseMultiquadric:
      this.rbf = new InverseMultiquadricFunction(2);
      break;
    case Multiquadric:
View Full Code Here


   * @param type The RBF type to use.
   */
  public NeighborhoodRBF(final int[] size, final RBFEnum type) {
    switch (type) {
    case Gaussian:
      this.rbf = new GaussianFunction(size.length);
      break;
    case InverseMultiquadric:
      this.rbf = new InverseMultiquadricFunction(size.length);
      break;
    case Multiquadric:
View Full Code Here

  public NeighborhoodRBF1D(final RBFEnum type) {

    switch(type)
    {
      case Gaussian:
        this.radial = new GaussianFunction(1);
        break;
      case InverseMultiquadric:
        this.radial = new InverseMultiquadricFunction(1);
        break;
      case Multiquadric:
View Full Code Here

TOP

Related Classes of org.encog.mathutil.rbf.GaussianFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.