Skip to content

Commit 063bccf

Browse files
committed
Reduce x-ticks amount (by 2)
1 parent 8dad861 commit 063bccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pylab_examples/psd_demo_complex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
fig.subplots_adjust(hspace=0.45, wspace=0.3)
2323
yticks = np.arange(-50, 30, 10)
2424
yrange = (yticks[0], yticks[-1])
25-
xticks = np.arange(-500, 550, 100)
25+
xticks = np.arange(-500, 550, 200)
2626

2727
ax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024,
2828
scale_by_freq=True)

0 commit comments

Comments
 (0)