Mercurial > repos > public > sbplib
view diags.m @ 1013:eb441fbdf379 feature/advectionRV
Draft implementation of RungeKutta with exterior RV updates
- Draft class RungeKuttaExteriorRV which updates the residual using a BDF approximation of the derivtive outside of the RK stages.
- Draft class for BDF derivative
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 05 Dec 2018 15:04:44 +0100 |
parents | 0b87863cb29c |
children |
line wrap: on
line source
function A = diags(B,d,m,n) assert(size(B,1) == m); A = repmat(B(:,1)*0, [1, n]); for i = 1:size(B,2) A(:,d(i)+ (1:m)) = A(:,d(i)+ (1:m)) + diag(B(:,i)); end end