about summary refs log tree commit diff
path: root/usth/MATH2.2/labwork/3/LU.m
diff options
context:
space:
mode:
Diffstat (limited to 'usth/MATH2.2/labwork/3/LU.m')
-rw-r--r--usth/MATH2.2/labwork/3/LU.m10
1 files changed, 0 insertions, 10 deletions
diff --git a/usth/MATH2.2/labwork/3/LU.m b/usth/MATH2.2/labwork/3/LU.m
deleted file mode 100644
index 860486d..0000000
--- a/usth/MATH2.2/labwork/3/LU.m
+++ /dev/null
@@ -1,10 +0,0 @@
-function [L U] = LU (A)
-  [n n1] = size (A);
-  [L U] = deal (eye (n), A);
-  for k = 1:n
-    for i = k + 1 : n
-      L(i, k) = U(i, k) / U(k, k);
-      U(i, :) = U(i, :) - L(i, k)*U(k, :);
-    end
-  end
-end