Package org.encog.mathutil.rbf

Examples of org.encog.mathutil.rbf.InverseMultiquadricFunction


          width);
    } else if (t == RBFEnum.Multiquadric) {
      this.flat.getRBF()[index] = new MultiquadricFunction(0.5, centers,
          width);
    } else if (t == RBFEnum.InverseMultiquadric) {
      this.flat.getRBF()[index] = new InverseMultiquadricFunction(0.5,
          centers, width);
    }
  }
View Full Code Here


          break;
        case 1:
          this.rbf = new MultiquadricFunction(1.0,center,1.0);
          break;
        case 2:
          this.rbf = new InverseMultiquadricFunction(1.0,center,1.0);
          break;
        case 3:
          this.rbf = new MexicanHatFunction(1.0,center,1.0);
          break;         
      }
View Full Code Here

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

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

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

      case 1:
        return new NeighborhoodRBF1D( new MexicanHatFunction(0,1,this.rbfWidth.getValue()));
      case 2:
        return new NeighborhoodRBF1D( new MultiquadricFunction(0,1,this.rbfWidth.getValue()));
      case 3:
        return new NeighborhoodRBF1D( new InverseMultiquadricFunction(0,1,this.rbfWidth.getValue()));
      case 4:
        return new NeighborhoodBubble( (int)this.rbfWidth.getValue() );
      case 5:
        return new NeighborhoodSingle( );
      case 6:
View Full Code Here

          width);
    } else if (t == RBFEnum.Multiquadric) {
      this.flat.getRBF()[index] = new MultiquadricFunction(0.5, centers,
          width);
    } else if (t == RBFEnum.InverseMultiquadric) {
      this.flat.getRBF()[index] = new InverseMultiquadricFunction(0.5,
          centers, width);
    }
  }
View Full Code Here

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

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

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

TOP

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

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.