Package org.drip.numerical.laplacian
Class LaplaceTransformGaussLegendre
java.lang.Object
org.drip.function.definition.R1ToR1
org.drip.numerical.laplacian.LaplaceTransformGaussLegendre
public class LaplaceTransformGaussLegendre extends R1ToR1
LaplaceTransformGaussLegendre implements the Laplace Transform Functionality using the Gauss
Legendre Quadrature Scheme.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Numerical Quadrature, Differentiation, Eigenization, Linear Algebra, and Utilities
- Package = Laplace Transform - Quadrature Based Evaluation
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description LaplaceTransformGaussLegendre(DerivativeControl dc, R1ToR1 signalFunction)
LaplaceTransformGaussLegendre Constructor -
Method Summary
Modifier and Type Method Description double
evaluate(double z)
Evaluate for the given variateR1ToR1
signalFunction()
Retrieve the Signal FunctionMethods inherited from class org.drip.function.definition.R1ToR1
antiDerivative, conditionNumber, derivative, differential, differential, integrate, maxima, maxima, minima, minima, poleResidue
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
LaplaceTransformGaussLegendre
public LaplaceTransformGaussLegendre(DerivativeControl dc, R1ToR1 signalFunction) throws java.lang.ExceptionLaplaceTransformGaussLegendre Constructor- Parameters:
dc
- The Derivative ControlsignalFunction
- The Signal Function- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
signalFunction
Retrieve the Signal Function- Returns:
- The Signal Function
-
evaluate
public double evaluate(double z) throws java.lang.ExceptionDescription copied from class:R1ToR1
Evaluate for the given variate
-