diff --git a/Source Code - Seals/process/__pycache__/__init__.cpython-38.pyc b/Source Code - Seals/process/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..c1fdae0 Binary files /dev/null and b/Source Code - Seals/process/__pycache__/__init__.cpython-38.pyc differ diff --git a/Source Code - Seals/process/__pycache__/process.cpython-38.pyc b/Source Code - Seals/process/__pycache__/process.cpython-38.pyc new file mode 100644 index 0000000..e321252 Binary files /dev/null and b/Source Code - Seals/process/__pycache__/process.cpython-38.pyc differ diff --git a/Source Code - Seals/process/process.py b/Source Code - Seals/process/process.py index 968cd9c..a9a1de1 100644 --- a/Source Code - Seals/process/process.py +++ b/Source Code - Seals/process/process.py @@ -44,8 +44,48 @@ def identity(matrix): return matrix -def gauss(matrix): +def gauss(a): + for i in range(a.shape[0]): + + k = i + 1 + + while (k