From becd453a568eeefa32927b69c6b0e7e90397164c Mon Sep 17 00:00:00 2001 From: Solovyova_ED Date: Mon, 24 Nov 2025 09:38:16 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'TEMA7/task.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA7/task.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TEMA7/task.md b/TEMA7/task.md index eafefb7..668af29 100644 --- a/TEMA7/task.md +++ b/TEMA7/task.md @@ -9,7 +9,7 @@ Y=b1+b2*X и имеющую аргументы b1, b2 и X. ## Решение -# 1 +# 1. ```py def delay_signal (signal, T): """"Расчёт выхода y(t) для устройства задержки""" @@ -25,7 +25,7 @@ y= delay_signal (x, 2) print(y) ``` -# 2 +# 2. ```py import random import matplotlib.pyplot as plt @@ -69,7 +69,7 @@ histogram(data, 3) 7.191768053621352 - 31.755216811825967 | 6 ``` ![График](Рис1.png) -# 3 +# 3. ```py linreg = lambda b1, b2, x: b1 + b2 * x b1 = float(input("Введите коэффициент b1 линейной регрессии: "))