Package jline.lib.lti

Object iltcme

  • All Implemented Interfaces:

    
    public class iltcme
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public final static iltcme INSTANCE
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static DoubleArray ilt(UnaryOperator<Complex> fun, DoubleArray T, Integer maxFnEvals, String method) Compute the inverse Laplace transform of fun at time points T.
      final static DoubleArray ilt(UnaryOperator<Complex> fun, DoubleArray T, Integer maxFnEvals) 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
    • Constructor Detail

    • Method Detail

      • ilt

        @JvmOverloads() final static DoubleArray ilt(UnaryOperator<Complex> fun, DoubleArray T, Integer 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

        @JvmOverloads() final static DoubleArray ilt(UnaryOperator<Complex> fun, DoubleArray T, Integer maxFnEvals)

        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
        Returns:

        array of f(t) values