view +scheme/error1d.m @ 610:b7b3c11fab4d feature/utux2D

Add interpolation to scheme
author Martin Almquist <malmquist@stanford.edu>
date Sat, 14 Oct 2017 22:38:42 -0700
parents ed6a704b028d
children
line wrap: on
line source

function e = error1d(discr, v1, v2)
    h = discr.h;
    e = sqrt(h*sum((v1-v2).^2));
end