import tkinter as tkimport mathimport matplotlib.pyplot as pltimport numpy as npdef logistic_function(L, k, x0, x): return L / (1 + math.exp(-k * (x - x0)))def plot_logistic(L, k, x0): x_values = np.linspace(-10, 10, 200) # X 범위 설정 y_values = L / (1 + np.exp(-k * (x_values - x0))) # 로지스틱 함수 계산 plt.figure(figsize=(8, 6)) plt.plot(x_values, y_values, label=f"Logistic Function (L={..