changed docstring

parent 8daac275
...@@ -10,7 +10,7 @@ def cordic_method(fx: tp.Callable[[float], float], a: float, b: float) -> float: ...@@ -10,7 +10,7 @@ def cordic_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
def double_recalculate_method( def double_recalculate_method(
fx: tp.Callable[[float], float], a: float, b: float, steps: int = 1000, perc: float = 0.0001 fx: tp.Callable[[float], float], a: float, b: float, steps: int = 1000, perc: float = 0.0001
) -> float: ) -> float:
"""Двойной пересчет""" """Метод двойного пересчета"""
h = (b - a) / steps h = (b - a) / steps
ln = 0 ln = 0
l2n = 0 l2n = 0
......
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