view kr.m @ 567:33b962620e24 feature/grids/laplace_refactor

Remove unneeded sign information from get_boundary_ops
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 01 Sep 2017 10:45:37 +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