view spdiag.m @ 1122:b8bd54332763 feature/poroelastic

Bugfix Elastic2dCurve
author Martin Almquist <malmquist@stanford.edu>
date Fri, 10 May 2019 15:26:47 -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