LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
thirdparty
FJ_codes
kronsum.m
1
function [ C ] = kronsum( A, B )
2
3
%
return
the kronecker sum of two matrices
4
C = kron(A,eye(size(B,2))) + kron(eye(size(A,2)),B);
5
6
end
7
Generated by
1.9.8