Mercurial > repos > public > sbplib
diff stripeMatrixPeriodic.m @ 890:c70131daaa6e feature/d1_staggered
Merge with feature/poroelastic.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 21 Nov 2018 18:29:29 -0800 |
parents | bbf303c1f0cf |
children |
line wrap: on
line diff
--- a/stripeMatrixPeriodic.m Sun Nov 04 12:36:30 2018 -0800 +++ b/stripeMatrixPeriodic.m Wed Nov 21 18:29:29 2018 -0800 @@ -1,8 +1,8 @@ -% Creates a periodic discretization matrix of size n x n +% Creates a periodic discretization matrix of size n x n % with the values of val on the diagonals diag. % A = stripeMatrix(val,diags,n) function A = stripeMatrixPeriodic(val,diags,n) D = ones(n,1)*val; - A = spdiagsVariablePeriodic(D,diags); + A = spdiagsPeriodic(D,diags); end \ No newline at end of file