InputType
- The type of the input to the Kernel. For example, Vector.@CodeReview(reviewer="Kevin R. Dixon", date="2009-07-08", changesNeeded=false, comments={"Made clone call super.clone.","Looks fine otherwise."}) public class NormalizedKernel<InputType> extends DefaultKernelContainer<InputType> implements Kernel<InputType>
NormalizedKernel
class implements an Kernel
that returns a normalized value between 0.0 and 1.0 by normalizing the
results of a given kernel. The normalization is done by:
kernel
Constructor and Description |
---|
NormalizedKernel()
Creates a new instance of NormalizedKernel.
|
NormalizedKernel(Kernel<? super InputType> kernel)
Creates a new instance of NormalizedKernel using the given kernel.
|
NormalizedKernel(NormalizedKernel<? super InputType> other)
Creates a new copy of a NormalizedKernel.
|
Modifier and Type | Method and Description |
---|---|
NormalizedKernel<InputType> |
clone()
This makes public the clone method on the
Object class and
removes the exception that it throws. |
double |
evaluate(InputType x,
InputType y)
Evaluates the normalized kernel by passing the evaluation off to the
internal kernel and then normalizing the results.
|
getKernel, setKernel
public NormalizedKernel()
public NormalizedKernel(Kernel<? super InputType> kernel)
kernel
- The kernel to use.public NormalizedKernel(NormalizedKernel<? super InputType> other)
other
- The NormalizedKernel to copy.public NormalizedKernel<InputType> clone()
AbstractCloneableSerializable
Object
class and
removes the exception that it throws. Its default behavior is to
automatically create a clone of the exact type of object that the
clone is called on and to copy all primitives but to keep all references,
which means it is a shallow copy.
Extensions of this class may want to override this method (but call
super.clone()
to implement a "smart copy". That is, to target
the most common use case for creating a copy of the object. Because of
the default behavior being a shallow copy, extending classes only need
to handle fields that need to have a deeper copy (or those that need to
be reset). Some of the methods in ObjectUtil
may be helpful in
implementing a custom clone method.
Note: The contract of this method is that you must use
super.clone()
as the basis for your implementation.clone
in interface CloneableSerializable
clone
in class DefaultKernelContainer<InputType>