Commit 0cb467a8 authored by Kittisak Maneewong's avatar Kittisak Maneewong

ส่งงาน ้hw06

parent b86e7475
...@@ -11,7 +11,9 @@ def Ab2Uc(A,b): ...@@ -11,7 +11,9 @@ def Ab2Uc(A,b):
b[i] = b[i] - lam * b[k] b[i] = b[i] - lam * b[k]
U = A.copy() U = A.copy()
c = b.copy() c = b.copy()
print('U : ')
print(U) print(U)
print('C : ')
print(c) print(c)
m,n,_=map(int,input().split('x')) m,n,_=map(int,input().split('x'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment