laplace_transform
Perform Laplace transform calculations for functions of time using specified variables to convert time-domain equations into the s-domain for analysis.
Instructions
Calculate the Laplace transform of a function
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | Yes | Function of time | |
| laplaceVar | Yes | Laplace variable | |
| timeVar | Yes | Time variable |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"expression": {
"description": "Function of time",
"type": "string"
},
"laplaceVar": {
"description": "Laplace variable",
"type": "string"
},
"timeVar": {
"description": "Time variable",
"type": "string"
}
},
"required": [
"expression",
"timeVar",
"laplaceVar"
],
"type": "object"
}