Mercurial > repos > public > sbplib
annotate +scheme/errorRelative.m @ 512:4ef2d2a493f1 feature/quantumTriangles
add H_xyz to hypsyst to compute H-norm
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Mon, 26 Jun 2017 19:23:19 +0200 |
parents | ed6a704b028d |
children |
rev | line source |
---|---|
26
ed6a704b028d
Made some changes to error functions and comparison functions before finalizing convergence script.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
1 function e = errorRelative(~,v1,v2) |
ed6a704b028d
Made some changes to error functions and comparison functions before finalizing convergence script.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
2 e = sqrt(sum((v1-v2).^2)/sum(v2.^2)); |
ed6a704b028d
Made some changes to error functions and comparison functions before finalizing convergence script.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
3 end |