Package jline.lib.lti

Class iltcme

java.lang.Object
jline.lib.lti.iltcme

public final class iltcme extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static double[]
    ilt(UnaryOperator<org.apache.commons.math3.complex.Complex> fun, double[] T, int maxFnEvals)
    ILT with the default method "cme".
    static double[]
    ilt(UnaryOperator<org.apache.commons.math3.complex.Complex> fun, double[] T, int maxFnEvals, String method)
    Compute the inverse Laplace transform of fun at time points T.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • ilt

      public static double[] ilt(UnaryOperator<org.apache.commons.math3.complex.Complex> fun, double[] T, int maxFnEvals, String method)
      Compute the inverse Laplace transform of fun at time points T.
      Parameters:
      fun - Laplace transform function F(s), operating on Complex
      T - array of time points (must be positive)
      maxFnEvals - maximum number of function evaluations allowed
      method - "cme" (default), "euler", or "gaver"
      Returns:
      array of f(t) values
    • ilt

      public static double[] ilt(UnaryOperator<org.apache.commons.math3.complex.Complex> fun, double[] T, int maxFnEvals)
      ILT with the default method "cme".