fixed typos
This commit is contained in:
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 |
@@ -12,7 +12,7 @@ y_int = x_int**2
|
|||||||
plt.plot(x, y, label="$y=x^2$")
|
plt.plot(x, y, label="$y=x^2$")
|
||||||
plt.plot(x, 2*x+3, label="y=2x+3")
|
plt.plot(x, 2*x+3, label="y=2x+3")
|
||||||
plt.scatter(x_int,y_int, s = 60, label="intersecție")
|
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.xlabel("x")
|
||||||
plt.ylabel("y")
|
plt.ylabel("y")
|
||||||
plt.grid(True)
|
plt.grid(True)
|
||||||
@@ -29,7 +29,7 @@ rad = np.linspace(-2*np.pi, 2*np.pi, 100)
|
|||||||
sinus = np.sin(rad)
|
sinus = np.sin(rad)
|
||||||
cosin = np.cos(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.xlabel("x")
|
||||||
plt.ylabel("y")
|
plt.ylabel("y")
|
||||||
plt.grid(True)
|
plt.grid(True)
|
||||||
|
|||||||
Reference in New Issue
Block a user