Home
Submit
Free Hosting
Link To Us
Contacts
Python Compute the value of a function as a polynomial
Python
Download
(.zip)
def qpoly(a,b,c,x):
return a*x*x+b*x+c
def plot(a,b,c,x1,x2):
alist = []
while (x2-x1) >=0 :
alist.append(qpoly(a,b,c,x1))
x1 = x1+1
return alist
Python
Writes a LaTeX file that is a bunch of numbers on the page
Address Book
Alarm Demo
Python
Celsius to Fahrenheit conversion program
Compute distance between two points
Compute the value of a function as a polynomial
Python
Convert binary numbers and octal
Fibonacci Number with recursion
Fibonacci Number without recursion
Python
Gets the max and the mean of the inputed numbers