From 55a6c7da23fdffce574e52cab512eb88745e8398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=92=D0=BE=D0=BB=D0=BE?= =?UTF-8?q?=D0=B4=D0=B8=D0=BD?= Date: Sun, 14 Dec 2025 17:48:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA9/report.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TEMA9/report.md b/TEMA9/report.md index 4c88c23..66b59b8 100644 --- a/TEMA9/report.md +++ b/TEMA9/report.md @@ -221,16 +221,16 @@ AttributeError: 'Class4' object has no attribute '_Class4__prm' # Sau.py class SAU: - def \_\_init\_\_(self, zn\_param): - self.param = zn\_param - self.ypr = \[0, 0] + def __init__(self, zn_param): + self.param = zn_param + self.ypr = [0, 0] - def zdn\_zn(self, upr): + def zdn_zn(self, upr): self.x = upr def model(self): def inerz(x, T, yy): - return (x + T \* yy) / (T + 1) + return (x + T * yy) / (T + 1) y0 = self.x - self.ypr[1] * self.param[3] y1 = self.param[0] * y0 @@ -240,7 +240,7 @@ class SAU: self.ypr[1] = y3 def otobraz(self): - print('y=', self.ypr\[1]) + print('y=', self.ypr[1]) #testSau.py