Commit 87b4af92 authored by Kittipong Maneewong's avatar Kittipong Maneewong

ส่งงาน week05

parent 70ab891f
# 59110440039 # 59110440039
# นายกิตติพงษ์ มณีวงษ์ # นายกิตติพงษ์ มณีวงษ์
def ge(A,b): iimport numpy as np
pass def ge(A,b) :
n=len(b)
for k in range(0,n-1):
for i in range(k+1,n):
if A[i,k] != 0.0:
lam = A[i,k]/A[k,k]
A[i,k] = 0
A[i,k+1:n] -= lam*A[k, k+1:n]
b[i] -= lam*b[k]
x=b.copy()
for k in range(n-1, -1, -1):
x[k] = (b[k] - np.dot(A[k,k+1:n], x[k+1:n]))/A[k,k]
return (x)
A = np.array([
[4, -2, 1],
[-2, 4, -2],
[1, -2, 4]
], float)
b = np.array([11,-16,17], float)
print(ge(A,b))
def solve(A,b): def solve(A,b):
import numpy.linalg import numpy.linalg
......
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