JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
LinearInputConv.java
Go to the documentation of this file.
1 package kermor.dscomp;
2 
3 import org.apache.commons.math.linear.RealMatrix;
4 
13 public class LinearInputConv implements IInputConv {
14 
15  private RealMatrix B;
16 
17  public LinearInputConv(RealMatrix B) {
18  this.B = B;
19  }
20 
21  /* (non-Javadoc)
22  * @see kermor.IInputConv#evaluate(double, kermor.Parameter)
23  */
24  @Override
25  public RealMatrix evaluate(double t, double[] mu) {
26  return B;
27  }
28 
29 }
RealMatrix evaluate(double t, double[] mu)
Interface for input conversion matrices .
Definition: IInputConv.java:13
Constant linear input conversion .