Mercurial > repos > public > sbplib
view spdiag.m @ 1206:6b203030fb37 feature/poroelastic
Fix performance (full matrices) issues in ElasticVariableAnisotropic
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sun, 15 Sep 2019 14:39:42 -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