def __init__(self, x0, y0, fchoice): self.__x0 = x0 self.__y0 = y0 self.__function = F.Function(fchoice) self.__h = 0.1 self.__times = 10 self.__do()
def __init__(self, left, right, p, fchoice): self.__left = left self.__right = right self.__p = p self.__function = F.Function(fchoice)
def __init__(self, l, r, n, fchoice): self.__left = l self.__right = r self.__n = n self.__step = (r - l) / n self.__function = f.Function(fchoice)
def __init__(self, l, r, fchoice): self.__left = l self.__right = r self.__function = f.Function(fchoice)
def __init__(self, x0, fchoice, fdchoice): self.__x0 = x0 self.__function = F.Function(fchoice) self.__functionD = F.Function(fdchoice)
def __init__(self, x0, x1, fchoice): self.__x0 = x0 self.__x1 = x1 self.__function = F.Function(fchoice)