view +scheme/errorMax.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 6db2094976a6
children
line wrap: on
line source

function e = errorMax(~, v1, v2)
    e = max(abs(v1-v2));
end