Matlab中有kron函数用来计算Kronecker积,我看了代码,简短而有效,先列出代码,然后作简要分析。 1. function K = kron(A,B) 2. %KRON Kronecker tensor product. 3. % KRON(X,Y) is the Kronecker tensor product of X and Y. 4. % The result is a large matrix formed by taking all possible 5. %...