import numpy as np
import matplotlib.pyplot as plt

# Gauss Fonksiyonu
def gaussian(x, A, mu, sigma):
    return A * np.exp(-((x - mu) ** 2) / (2 * sigma ** 2))

# Basit Veri
x = np.linspace(2.0, 3.0, 100)
y = gaussian(x, 1, 2.5, 0.2)

# Grafik
plt.plot(x, y, label='Gaussian')
plt.xlabel('x')
plt.ylabel('y')
plt.legend()
plt.show()
# your code goes here