Commit bed6648b authored by Kittipong Maneewong's avatar Kittipong Maneewong

ส่งงาน week09

parent 92d56cf3
#1.1 #1.1
from math import e from math import e
f1x = (e**(1.001)-e*0.999)/0.002 f1x = (e**(-1.001)-e*-0.999)/0.002
def f1x(x,h): def f1x(x,h):
return (e**(x+h)-e**(x-h))/(2*h) return (e**(x+h)-e**(x-h))/(2*h)
f1x(1,0.001) f1x(1,0.001)
......
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