Mercurial > repos > public > sbplib
view spdiag.m @ 802:e3d963997527 feature/poroelastic
Merge with feature/grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 26 Jul 2018 18:05:29 -0700 |
parents | e76321b89c1e |
children |
line wrap: on
line source
function A = spdiag(a,i) default_arg('i',0); if isrow(a) a = a'; end n = length(a)+abs(i); A = spdiags(a,i,n,n); end