From 8ca3620a0b9f3f6323f6641bf57d09e78115d175 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Tue, 23 Sep 2025 16:58:06 +0300 Subject: [PATCH] code for logistic function --- testing_project/logistic.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing_project/logistic.py b/testing_project/logistic.py index e49d1c2..1afaa23 100644 --- a/testing_project/logistic.py +++ b/testing_project/logistic.py @@ -1 +1,3 @@ -# Your code goes here + +def f(x, r): + return r * x * (1-x)