This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import theano | |
import theano.tensor as T | |
import numpy | |
import h5py | |
import os | |
import time | |
def rungekuttastep(h, y, fprime, *theta): | |
k1 = h*fprime(y,*theta) |