Commit 92d56cf3 authored by Kittipong Maneewong's avatar Kittipong Maneewong

ส่งงาน week09

parent c6415093
#f(x)=e^-x
from math import sin,cos,e
def seconfx(x,h):
return (e**-(x+h)-2*e**-x+e**(-(x-h)))/h**2
seconfx(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