Commit 1cadf783 authored by KANTAPONG SONG-NGAM's avatar KANTAPONG SONG-NGAM

work

parent 4852b197
......@@ -5,4 +5,19 @@ def ge(A,b):
pass
def solve(A,b):
pass
import numpy.linalg
result = numpy.linapy.solve(A,b)
for x in result :
print('x_1={}'.format(x))
m,n,o = map(int,input().spilt('x'))
print(m,n)
a=[]
for row in range(m):
A.append(list( map(int,input().split(','))))
print(n,o)
#รับ b-> 2,1,3,4,4
b= list(map(int,input().split(',')))
#ตอนนี้เรา มี A,b แล้ว
#solve(A,b)
#59110440024
#kantapong_song-ngam
# 59110440024
# นายนวยศ ประทุมทอง
def ge(A,b):
pass
def solve(A,b):
def ge(A, b):
pass
def solve(A, b):
import numpy.linalg
result = numpy.linalg.solve(A,b)
for x in result:
print('$x_1={}$',format(x))
#5x3
m,n,o = map(int, input().split('x'))
print(m,n)
A = []
for row in range(m):
# 2,3,1,4,7
A.append(list(map(int, input().split(','))))
print(n, o)
# รับ b -> 2,1,3,4,4
b = list(map(int, input().split(',')))
# ตอนนี้เรามี A, b แล้ว
solve(A,b)
เขียนฟังก์ชั่นเพื่อหา Upper-triangular matrik(U) จากสมการ Ax= b
โดย Ux = c เป็นสมการที่ลกรูปแล้ว
\ No newline at end of file
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