view +scheme/errorMax.m @ 292:3d275c5e45b3 feature/hypsyst

Changed how the matrices are built
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 23 Sep 2016 14:48:54 +0200
parents 6db2094976a6
children
line wrap: on
line source

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