JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
LinearKernel.java
Go to the documentation of this file.
1 package kermor.kernel;
2 
3 import org.apache.commons.math.linear.RealMatrix;
4 
13 public class LinearKernel implements IKernel {
14 
19  @Override
20  public RealMatrix evaluate(RealMatrix x, RealMatrix y) {
21  throw new RuntimeException("not yet implemented");
22  }
23 
27  @Override
28  public double[] evaluate(double[] x, RealMatrix y) {
29  throw new RuntimeException("not yet implemented");
30  }
31 
35  @Override
36  public double[] evaluate(double t, double[] ti) {
37  throw new RuntimeException("not yet implemented");
38  }
39 
40 }
double[] evaluate(double[] x, RealMatrix y)
Interface for kernel implementations in JKerMor.
Definition: IKernel.java:14
double[] evaluate(double t, double[] ti)
RealMatrix evaluate(RealMatrix x, RealMatrix y)
Implements a linear scalar product kernel .