Mercurial > repos > public > sbplib
view kr.m @ 965:db3411264b96 feature/poroelastic
Remove use of tensor library in B assembly
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 22 Dec 2018 16:41:17 +0100 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
function A = kr(varargin) n = nargin; A = 1; for i = 1:n A = kron(A,varargin{i}); end end