Skip to content

Commit

Permalink
glow-up arma example
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdiolfat committed Feb 2, 2024
1 parent 2e19619 commit e823e9b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/process_arma.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@
"import matplotlib.pyplot as plt"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Autoregressive Moving Average (Random) Processes\n",
"\n",
"$$\n",
"\n",
"H(z) = \\frac{B_q(z)}{A_p(z)} =\n",
"\\frac{\n",
"\t\\sum_{k = 0}^{q}b_q(k)z^{-k}}\n",
"\t{\n",
"\t1 + \\sum_{k = 1}^{p}a_p(k)z^{-k}\n",
"}\n",
"\n",
"$$"
]
},
{
"cell_type": "code",
"execution_count": 8,
Expand Down

0 comments on commit e823e9b

Please sign in to comment.