Package jline.lib.lti
Object iltcme
-
- All Implemented Interfaces:
public class iltcme
-
-
Method Summary
Modifier and Type Method Description final static DoubleArrayilt(UnaryOperator<Complex> fun, DoubleArray T, Integer maxFnEvals, String method)Compute the inverse Laplace transform of fun at time points T. final static DoubleArrayilt(UnaryOperator<Complex> fun, DoubleArray T, Integer maxFnEvals)Compute the inverse Laplace transform of fun at time points T. -
-
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 ComplexT- array of time points (must be positive)maxFnEvals- maximum number of function evaluations allowedmethod- "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 ComplexT- array of time points (must be positive)maxFnEvals- maximum number of function evaluations allowed- Returns:
array of f(t) values
-
-
-
-