Mercurial > repos > public > sbplib
view convergence.m @ 695:ba0d31ce4121 feature/quantumTriangles
Changed jacobian at right side of the penalty term in 2D, seems like it is working
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Tue, 19 Sep 2017 09:51:08 +0200 |
parents | ad1a41d135a1 |
children |
line wrap: on
line source
function q = convergence(e,h) for i = 1:length(e)-1 q(i) = log(e(i)/e(i+1))/log(h(i+1)/h(i)); end end