Skip to content

Commit 6fb7c55

Browse files
committed
replace 3,3 with rows,cols
1 parent dd341a9 commit 6fb7c55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/audio/simple_audio.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
"cols = 3\n",
361361
"n = rows * cols\n",
362362
"for i in range(n):\n",
363-
" plt.subplot(3, 3, i+1)\n",
363+
" plt.subplot(rows, cols, i+1)\n",
364364
" audio_signal = example_audio[i]\n",
365365
" plt.plot(audio_signal)\n",
366366
" plt.title(label_names[example_labels[i]])\n",

0 commit comments

Comments
 (0)