Skip to content

Commit

Permalink
DOC: write "Sheet" instead of "S"
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Sep 12, 2023
1 parent e5b309c commit 0c74b58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/lecture17.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@
" surfacecolor=t.real if colorize else np.ones(shape=t.shape),\n",
" )\n",
" S_im = [\n",
" go.Surface(x=X, y=Y, z=t.imag, **style(i, t), name=f\"S{i}\")\n",
" go.Surface(x=X, y=Y, z=t.imag, **style(i, t), name=f\"Sheet {i}\")\n",
" for i, t in enumerate(T, 1)\n",
" ]\n",
" S_re = [\n",
" go.Surface(x=X, y=Y, z=t.real, **style(i, t), name=f\"S{i}\")\n",
" go.Surface(x=X, y=Y, z=t.real, **style(i, t), name=f\"Sheet {i}\")\n",
" for i, t in enumerate(T, 1)\n",
" ]\n",
" fig = make_subplots(\n",
Expand Down

0 comments on commit 0c74b58

Please sign in to comment.