Mercurial > repos > public > sbplib
view kr.m @ 553:63d5c07943dd feature/grids/laplace_refactor
Reorder and restructure constructor
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 29 Aug 2017 11:04:15 +0200 |
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