fixed typos

This commit is contained in:
2026-04-01 20:58:21 +03:00
parent f7ba16ca79
commit 55ae4d7582
3 changed files with 2 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 67 KiB

+2 -2
View File
@@ -12,7 +12,7 @@ y_int = x_int**2
plt.plot(x, y, label="$y=x^2$")
plt.plot(x, 2*x+3, label="y=2x+3")
plt.scatter(x_int,y_int, s = 60, label="intersecție")
plt.title("Graficul funției $f(x)=x^2$")
plt.title("Graficul funcției $f(x)=x^2$")
plt.xlabel("x")
plt.ylabel("y")
plt.grid(True)
@@ -29,7 +29,7 @@ rad = np.linspace(-2*np.pi, 2*np.pi, 100)
sinus = np.sin(rad)
cosin = np.cos(rad)
plt.title("Graficele funțiilor sin(x) și cos(x)")
plt.title("Graficele funcțiilor sin(x) și cos(x)")
plt.xlabel("x")
plt.ylabel("y")
plt.grid(True)