필터 지우기
필터 지우기

How to create a diagonal matrix from several different size matrices

조회 수: 14 (최근 30일)
alex
alex 2019년 2월 3일
편집: Stephen23 2019년 2월 3일
Hello. I want to compute a diagonal matrix from several matrices with different sizes.for exampe A=diag(A1,A2,A3,...). A1, A2 and A3 are matrices with different sizes. Can any one help me plz? regards.

답변 (1개)

Stephen23
Stephen23 2019년 2월 3일
편집: Stephen23 2019년 2월 3일
It is not clear if you want those matrices to be converted to a diagonal-only matrix, or if you want a block-diagonal matrix. Here is how to generate a block-diagonal matrix:
blkdiag(A1,A2,A3,...)
or simpler:
C = {cell array of all of your matrices}
blkdiag(C{:})

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by