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