view +scheme/errorRelative.m @ 259:a94bb3d92aba operator_remake

Added empty borrowing property to nonequidstant class.
author Martin Almquist <martin.almquist@it.uu.se>
date Thu, 08 Sep 2016 13:44:13 +0200
parents ed6a704b028d
children
line wrap: on
line source

function e = errorRelative(~,v1,v2)
    e = sqrt(sum((v1-v2).^2)/sum(v2.^2));
end