메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
불연속 값에 슬라이더 맞추기 #
valstep
인수 를 사용하여 슬라이더 값을 불연속 값으로 스냅할 수 있습니다 .
이 예에서 Freq 슬라이더는 pi의 배수로 제한되며 Amp 슬라이더는 배열을 valstep
인수로 사용하여 해당 범위의 첫 번째 부분을 더 조밀하게 샘플링합니다.
a를 사용 하여 단일 플로트를 제어 하는 예는 Slider 를 참조하십시오 .Slider
a를 사용 하여 값 범위를 정의하는 예는 RangeSlider로 이미지 임계값 지정을 참조하십시오 .RangeSlider
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.widgets import Slider, Button
t = np.arange(0.0, 1.0, 0.001)
a0 = 5
f0 = 3
s = a0 * np.sin(2 * np.pi * f0 * t)
fig, ax = plt.subplots()
fig.subplots_adjust(bottom=0.25)
l, = ax.plot(t, s, lw=2)
ax_freq = fig.add_axes([0.25, 0.1, 0.65, 0.03])
ax_amp = fig.add_axes([0.25, 0.15, 0.65, 0.03])
# define the values to use for snapping
allowed_amplitudes = np.concatenate([np.linspace(.1, 5, 100), [6, 7, 8, 9]])
# create the sliders
samp = Slider(
ax_amp, "Amp", 0.1, 9.0,
valinit=a0, valstep=allowed_amplitudes,
color="green"
)
sfreq = Slider(
ax_freq, "Freq", 0, 10*np.pi,
valinit=2*np.pi, valstep=np.pi,
initcolor='none' # Remove the line marking the valinit position.
)
def update(val):
amp = samp.val
freq = sfreq.val
l.set_ydata(amp*np.sin(2*np.pi*freq*t))
fig.canvas.draw_idle()
sfreq.on_changed(update)
samp.on_changed(update)
ax_reset = fig.add_axes([0.8, 0.025, 0.1, 0.04])
button = Button(ax_reset, 'Reset', hovercolor='0.975')
def reset(event):
sfreq.reset()
samp.reset()
button.on_clicked(reset)
plt.show()