Mercurial > repos > public > sbplib
view convergence.m @ 693:a5d4e3ced9a5 feature/quantumTriangles
changed my mond about the jacobian
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Fri, 15 Sep 2017 09:24:21 +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