Back to functions

ilt


inverse Laplace (Under development)

Attempts to calculate the inverse Laplace transform of an expression. Currently computes transforms of most common expressions. Throws and error if no transform could be calculated. This is still being developed so please report any issues.

Usage: nerdamer("ilt(expression, s, t)")


Parameters

expression expression The expression to be transformed
variable s The transformation variable
variable t The time variable

Returns

Expression

EXAMPLES:
var x = nerdamer('ilt(factorial(6)*s^(-7),s, t)').evaluate();
console.log(x.toString());
var y = nerdamer('ilt((1+s^2)^(-1)*s, s, t)').evaluate();
console.log(y.toString());
OUTPUT:
Back to functions