edu.udo.cs.yale.operator.learner.kernel.evosvm
Class MultiquadricKernel

java.lang.Object
  extended by edu.udo.cs.yale.operator.learner.kernel.evosvm.Kernel
      extended by edu.udo.cs.yale.operator.learner.kernel.evosvm.MultiquadricKernel

public class MultiquadricKernel
extends Kernel

Returns the value of the Multiquadric kernel of both examples.

Version:
$Id: MultiquadricKernel.java,v 1.2 2006/08/03 14:39:35 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  double shift
          The parameter shift of the multiquadric kernel.
private  double sigma
          The parameter sigma of the Multiquadric kernel.
 
Fields inherited from class edu.udo.cs.yale.operator.learner.kernel.evosvm.Kernel
KERNEL_DOT, KERNEL_EPANECHNIKOV, KERNEL_GAUSSIAN_COMBINATION, KERNEL_MULTIQUADRIC, KERNEL_POLYNOMIAL, KERNEL_RADIAL, KERNEL_SIGMOID, KERNEL_TYPES
 
Constructor Summary
MultiquadricKernel()
           
 
Method Summary
 double calculateDistance(double[] x1, double[] x2)
          Calculates kernel value of vectors x and y.
 double getShift()
           
 double getSigma()
           
 int getType()
          Must return one out of KERNEL_DOT, KERNEL_RADIAL, KERNEL_POLYNOMIAL, or KERNEL_SIGMOID.
 void readKernelParameters(java.io.ObjectInputStream in)
          Reads the values from the given stream.
 void setShift(double shift)
           
 void setSigma(double sigma)
           
 void writeKernelParameters(java.io.ObjectOutputStream out)
          Writes the values into the given stream.
 
Methods inherited from class edu.udo.cs.yale.operator.learner.kernel.evosvm.Kernel
createKernel, createKernel, getDistance, getSum, init, innerProduct, norm2, readKernelData, writeKernelData
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sigma

private double sigma
The parameter sigma of the Multiquadric kernel.


shift

private double shift
The parameter shift of the multiquadric kernel.

Constructor Detail

MultiquadricKernel

public MultiquadricKernel()
Method Detail

getType

public int getType()
Description copied from class: Kernel
Must return one out of KERNEL_DOT, KERNEL_RADIAL, KERNEL_POLYNOMIAL, or KERNEL_SIGMOID.

Specified by:
getType in class Kernel


setSigma

public void setSigma(double sigma)

getSigma

public double getSigma()

setShift

public void setShift(double shift)

getShift

public double getShift()

calculateDistance

public double calculateDistance(double[] x1,
                                double[] x2)
Calculates kernel value of vectors x and y.

Specified by:
calculateDistance in class Kernel


readKernelParameters

public void readKernelParameters(java.io.ObjectInputStream in)
                          throws java.io.IOException
Reads the values from the given stream.

Specified by:
readKernelParameters in class Kernel
Throws:
java.io.IOException


writeKernelParameters

public void writeKernelParameters(java.io.ObjectOutputStream out)
                           throws java.io.IOException
Writes the values into the given stream.

Specified by:
writeKernelParameters in class Kernel
Throws:
java.io.IOException



Copyright © 2001-2006