view spdiag.m @ 1304:a38e80fdbf60 feature/poroelastic

Improve performance for the hollow case
author Martin Almquist <malmquist@stanford.edu>
date Sat, 11 Jul 2020 07:25:06 -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