Matrix Dimension not the same

1 回表示 (過去 30 日間)
Steve
Steve 2020 年 12 月 14 日
回答済み: Raunak Gupta 2020 年 12 月 18 日
A= eye(3,3)
B= eye(6,6)
kron(A,A) resulting in 9x9 identity matrix, how to change the dimension of 9x9 matrix into 6x6 matrix using voight system in matlab.
Cep=k*kron(A,A)+2*(B-1/3*(kron(A,A)))

回答 (1 件)

Raunak Gupta
Raunak Gupta 2020 年 12 月 18 日
Hi,
kron function returns kronecker tensor product of two matrices therefore size of resulting matrix will be [size(A,1)*size(B,1) size(A,2)*size(B,2)] for two matrices A and B. So, you may check if only a sub part of the matrix is required or B matrix can be different.

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by