Processing math: 100%
previous next

Implementation of the norm of the error

E=||en||2=ΔtNtn=0(en)2

Python w/array arithmetics:

e = u_exact(t) - u
E = sqrt(dt*sum(e**2))

previous next