Manipulating tensor products

3 Ansichten (letzte 30 Tage)
Murray Douglas
Murray Douglas am 14 Mär. 2011
If I have computed an integral of something of the form kron(A,B) where A and B are sparse matrices. How do I get other tensor products such as kron(A',B), kron(A, B'), etc? Since they all involve the same elements it should be a simple manipulation of the indices. Is there an existing routine to do this?

Antworten (2)

Andrew Newell
Andrew Newell am 14 Mär. 2011
Transposition is distributive over the Kronecker product, so
kron(A',B') = kron(A,B)'
kron(A',B) = kron(A,B')'
but there doesn't seem to be a simple way of getting kron(A',B) or kron(A,B') from kron(A,B).

Sean de Wolski
Sean de Wolski am 14 Mär. 2011

Kategorien

Mehr zu Sparse Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by