Broader Impacts

The SimBAL project is spawning a portfolio of machine learning and data analytics courses offered at the University of Oklahoma and Ohio State University. This is the future webpage for information about those courses.

Check latex E=h\nu.

i\hbar\frac{\partial}{\partial t}\left|\Psi(t)\right>=H\left|\Psi(t)\right>


# Fibonacci numbers module
def fib(n): # write Fibonacci series up to n
    a, b = 0, 1
    while b < n:
        print b,
        a, b = b, a+b

def fib2(n): # return Fibonacci series up to n
    result = []
    a, b = 0, 1
    while b < n:
        result.append(b)
        a, b = b, a+b
    return result


css.php