Generation

generate functionSun, 25 Jun 2023

Dibujar la siguiente función F(x)= sin(1/x)

x = np.arange(0.1, 1, 0.01) y = np.sin(1/x) plt.plot(x,y) plt.show()

Want to kickstart your project?Use the new AI Studio to create your code