Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Antonio Villanueva Segura
- #Calculo grafico de 2x^2-3x-2 con matplotlib en python3
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #python install pip
- #python -mpip install matplotlib
- import numpy as np
- import matplotlib.pyplot as plt #Para plotear los resultados
- def P(x):#La funcion 2x^2-3x-2
- return (2*(x**2))-3*x-2
- def liste_P(liste_x):# Crea una lista en funcion de los valores de X
- liste=[]
- for n in liste_x:
- liste.append(P(n))
- return liste
- # Damos valores a las X de -10 a 10
- X = np.linspace(-10, 10)
- # y calculamos Y con la funcion liste_(P) que utiliza P(x)=2x^2-3x-2
- Y = liste_P(X)
- #Muestro los valores de ambas listas X e Y
- print ("Valores X = " ,X,'\n Valores Y = ',Y)
- # Solo nos queda dibujar la lista de valores X, y
- plt.plot(X, Y)
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement