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
# REQUIRES PACKAGES Numpy AND Scipy INSTALLED | |
import numpy as np | |
import scipy.integrate | |
import scipy.interpolate | |
class ddeVar: | |
""" special function-like variables for the integration of DDEs """ | |
def __init__(self,g,tc=0): | |
""" g(t) = expression of Y(t) for t<tc """ |
NewerOlder