Vectorized Transpose Matrix

Creates an orthogonal permutation matrix for tensor and linear algebra manipulations.
ダウンロード: 552
更新 2010/2/24

ライセンスの表示

The vectorized transpose matrix, Tmn, is the matrix that permutes the vectorization of an m#n matrix A into its transpose vectorization. For example, if the vectorization of A is defined as vec(A), or A(:), then Tmn*vec(A) = vec(A').

EXAMPLE
The vectorized transpose matrix can be used to reverse the order of arguments to the otherwise non-commutative Kronecker product.

>> m=2;n=3;p=4;q=2;
>> A = rand(m,n); B = rand(p,q);
>> isequal(TvecMat(p,m)*kron(A,B)*TvecMat(n,q),kron(B,A))
ans =
1

For other useful properties of the vectorized transpose matrix, see:
http://www.ee.ic.ac.uk/hp/staff/dmb/matrix/special.html#VecTranspose

引用

Zachary Danziger (2024). Vectorized Transpose Matrix (https://www.mathworks.com/matlabcentral/fileexchange/26781-vectorized-transpose-matrix), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2009a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersLinear Algebra についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0