Mercurial > repos > public > sbplib
view kr.m @ 150:d5a794c734bc feature/grids
Starting branch for adding abstract classes for grids, grid functions as well as implementing plotting and error calculation for these.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 21 Dec 2015 15:06:16 +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