z_transform
Compute the Z-transform of a discrete-time function to analyze signals and systems in the frequency domain by specifying the function, time variable, and Z-transform variable.
Instructions
Calculate the Z-transform of a function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expression | Yes | Function of discrete time | |
limit | No | Upper limit for summation (default: 100) | |
timeVar | Yes | Discrete time variable | |
zVar | Yes | Z-transform variable |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"expression": {
"description": "Function of discrete time",
"type": "string"
},
"limit": {
"description": "Upper limit for summation (default: 100)",
"type": "number"
},
"timeVar": {
"description": "Discrete time variable",
"type": "string"
},
"zVar": {
"description": "Z-transform variable",
"type": "string"
}
},
"required": [
"expression",
"timeVar",
"zVar"
],
"type": "object"
}