JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
IMassMatrix.java
Go to the documentation of this file.
1 package kermor.dscomp;
2 
3 import org.apache.commons.math.linear.RealMatrix;
4 
13 public interface IMassMatrix {
14 
15  public RealMatrix evaluate(double t, double[] mu);
16 
17  public boolean isTimeDependent();
18 }
Interface for dynamical system mass matrices .
RealMatrix evaluate(double t, double[] mu)