Skip to content

Commit

Permalink
Update W3D4_Tutorial1.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
iamzoltan authored Feb 12, 2025
1 parent e961c60 commit 1b66c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/W3D4_ReinforcementLearning/W3D4_Tutorial1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@
" if not ax:\n",
" fig, ax = plt.subplots()\n",
"\n",
" indx = np.arange(0, TDE.shape[1], skip)\n",
" im = ax.imshow(TDE[:,indx])\n",
" index = np.arange(0, TDE.shape[1], skip)\n",
" im = ax.imshow(TDE[:,index])\n",
" positions = ax.get_xticks()\n",
" # Avoid warning when setting string tick labels\n",
" ax.xaxis.set_major_locator(ticker.FixedLocator(positions))\n",
Expand Down

0 comments on commit 1b66c18

Please sign in to comment.