view +scheme/error1d.m @ 299:4d8d6eb0c116 feature/hypsyst

A commit before I change the boundary treatment
author Ylva Rydin <ylva.rydin@telia.com>
date Tue, 04 Oct 2016 09:11:49 +0200
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