Skip to content

Commit

Permalink
deleted: use_line_collection: bool
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobTh98 committed Oct 23, 2023
1 parent 2fea59d commit 491a7b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions random_signals/correlation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@
" plt.figure(figsize=(9, 2))\n",
" plt.subplot(1, 2, 1)\n",
" kappa_xy, ccf_xy = my_xcorr2(x, y)\n",
" plt.stem(kappa_xy, ccf_xy, basefmt=\"C0:\", use_line_collection=True)\n",
" plt.stem(kappa_xy, ccf_xy, basefmt=\"C0:\")\n",
" plt.xlabel(r\"$\\kappa$\")\n",
" plt.ylabel(r\"$\\varphi_{xy}[\\kappa]$\")\n",
" plt.title(\"cross correlation between x and y\")\n",
" plt.grid(True)\n",
" plt.subplot(1, 2, 2)\n",
" kappa_yx, ccf_yx = my_xcorr2(y, x)\n",
" plt.stem(kappa_yx, ccf_yx, basefmt=\"C0:\", use_line_collection=True)\n",
" plt.stem(kappa_yx, ccf_yx, basefmt=\"C0:\")\n",
" plt.xlabel(r\"$\\kappa$\")\n",
" plt.ylabel(r\"$\\varphi_{yx}[\\kappa]$\")\n",
" plt.title(\"cross correlation between y and x\")\n",
Expand Down

0 comments on commit 491a7b9

Please sign in to comment.