We interpolate points by polynomial
Its coefficients are found as a solution of system of linear equations:
Code example:
def fib(n): if n == 0: return 0 elif n == 1: return 1 else: return fib(n-1) + fib(n-2)
We interpolate points by polynomial
Its coefficients are found as a solution of system of linear equations:
Code example:
def fib(n): if n == 0: return 0 elif n == 1: return 1 else: return fib(n-1) + fib(n-2)
My description of machine learning using only the ten hundred most used words (via the up-goer five text editor): This is the […]
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
These are my links for March 2nd through March 4th: Infochimps :: Find Any Dataset in the World – Infochimps is an […]
A fun question: If you could have the entire world know just one thing about your profession or expertise, what would it […]