From 8d0979972647bb935e41effc9a3d6dc3d49eecbb Mon Sep 17 00:00:00 2001 From: linarphy Date: Fri, 25 Aug 2023 17:26:58 +0200 Subject: [PATCH] Add fit functions --- function/fit.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 function/fit.py diff --git a/function/fit.py b/function/fit.py new file mode 100644 index 0000000..82581d5 --- /dev/null +++ b/function/fit.py @@ -0,0 +1,2 @@ +def linear( x , a , b ): + return a * x + b