Mercurial > repos > public > sbplib
view convergence.m @ 1133:92dc0a3b5d5d feature/laplace_curvilinear_test
Generalize multiblock.evalOn() to work for a mix of function handles and grid functions
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 27 May 2019 16:52:28 -0700 |
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