dynamic solver signatures

parent 10d87a87
import typing as tp
# TODO Метод цифра за цифрой
def cordic_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
pass
# TODO Метод двойного пересчета
def double_recalculate_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
pass
# TODO Метод Рунге-Кутта
def runge_kutta_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
pass
# TODO Метод Эйлера
def euler_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment