Mercurial > repos > public > sbplib
view rowVector.m @ 1015:9b7fcd5e4480 feature/advectionRV
Debug ResidualViscosity
- Pass exact time derivative to RungeKuttaExteriorRV and use that for evaluating the residual
- Start bootstrapping from later time level with higher order bdf
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 06 Dec 2018 17:03:22 +0100 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
function r = rowVector(v) if size(v,1) == 1 r = v elseif size(v,2) == 1 r = v'; else error('v is not a matrix'); end end