Skip to content

appademe/diagrame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

diagrame

build diagrame with Python


import matplotlib.pyplot as plt import numpy as np

#y=x^2-3x+4

x=np.arange(-5,5,0.5)

y=[]

for i in x:

y.append(i**2-3*i + 4)

plt.plot(x,y,'r-')

plt.show()

About

build diagrame with Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors